| Name | Type | Attributes | Required | Comment |
|---|---|---|---|---|
| id | String |
|
Yes | - |
| name | String |
|
Yes | - |
| categories | Category[] |
|
Yes | - |
| isActive | Boolean |
|
Yes | - |
| isFinished | Boolean |
|
Yes | - |
| players | Player[] |
|
Yes | - |
| matches | Match[] |
|
Yes | - |
| places | Place[] |
|
Yes | - |
| eventRequests | EventRequest[] |
|
Yes | - |
| eventDoubles | EventDouble[] |
|
Yes | - |
| startDate | DateTime? |
|
No | - |
| finishDate | DateTime? |
|
No | - |
| matchDurationInMinutes | Int? |
|
No | - |
| timeOfFirstMatch | Int? |
|
No | - |
| timeOfLastMatch | Int? |
|
No | - |
| games | Game[] |
|
Yes | - |
| sets | Set[] |
|
Yes | - |
| matchDates | MatchDate[] |
|
Yes | - |
| eventType | EventType |
|
Yes | - |
| matchType | MatchType |
|
Yes | - |
| courts | Court[] |
|
Yes | - |
| invite | Invite? |
|
No | - |
| categoriesGroups | CategoryGroup[] |
|
Yes | - |
| eventMatches | EventMatch[] |
|
Yes | - |
| isGroupMatchesFinished | Boolean |
|
Yes | - |
Find zero or one Event
// Get one Event
const event = await prisma.event.findUnique({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | EventWhereUniqueInput | Yes |
Find first Event
// Get one Event
const event = await prisma.event.findFirst({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | EventWhereInput | No |
| orderBy | EventOrderByWithRelationInput[] | EventOrderByWithRelationInput | No |
| cursor | EventWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | EventScalarFieldEnum | EventScalarFieldEnum[] | No |
Find zero or more Event
// Get all Event
const Event = await prisma.event.findMany()
// Get first 10 Event
const Event = await prisma.event.findMany({ take: 10 })
| Name | Type | Required |
|---|---|---|
| where | EventWhereInput | No |
| orderBy | EventOrderByWithRelationInput[] | EventOrderByWithRelationInput | No |
| cursor | EventWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | EventScalarFieldEnum | EventScalarFieldEnum[] | No |
Create one Event
// Create one Event
const Event = await prisma.event.create({
data: {
// ... data to create a Event
}
})
| Name | Type | Required |
|---|---|---|
| data | EventCreateInput | EventUncheckedCreateInput | Yes |
Delete one Event
// Delete one Event
const Event = await prisma.event.delete({
where: {
// ... filter to delete one Event
}
})
| Name | Type | Required |
|---|---|---|
| where | EventWhereUniqueInput | Yes |
Update one Event
// Update one Event
const event = await prisma.event.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | EventUpdateInput | EventUncheckedUpdateInput | Yes |
| where | EventWhereUniqueInput | Yes |
Delete zero or more Event
// Delete a few Event
const { count } = await prisma.event.deleteMany({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | EventWhereInput | No |
Update zero or one Event
const { count } = await prisma.event.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | EventUpdateManyMutationInput | EventUncheckedUpdateManyInput | Yes |
| where | EventWhereInput | No |
Create or update one Event
// Update or create a Event
const event = await prisma.event.upsert({
create: {
// ... data to create a Event
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the Event we want to update
}
})
| Name | Type | Required |
|---|---|---|
| where | EventWhereUniqueInput | Yes |
| create | EventCreateInput | EventUncheckedCreateInput | Yes |
| update | EventUpdateInput | EventUncheckedUpdateInput | Yes |
| Name | Value |
|---|---|
| @@unique |
|
| @@index |
|
| Name | Type | Attributes | Required | Comment |
|---|---|---|---|---|
| id | String |
|
Yes | - |
| category | Category |
|
Yes | - |
| categoryId | String |
|
Yes | - |
| groups | DoublesGroup[] |
|
Yes | - |
| event | Event? |
|
No | - |
| eventId | String? |
|
No | - |
| finalMatches | EventMatch[] |
|
Yes | - |
| matchesWithReference | MatchesReferenced[] |
|
Yes | - |
| firstPlace | Double? |
|
No | - |
| firstPlaceId | String? |
|
No | - |
| secondPlace | Double? |
|
No | - |
| secondPlaceId | String? |
|
No | - |
| groupsStageFinished | Boolean |
|
Yes | - |
| categoryFinished | Boolean |
|
Yes | - |
| isFinalMatchesCreated | Boolean |
|
Yes | - |
Find zero or one CategoryGroup
// Get one CategoryGroup
const categoryGroup = await prisma.categoryGroup.findUnique({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | CategoryGroupWhereUniqueInput | Yes |
Find first CategoryGroup
// Get one CategoryGroup
const categoryGroup = await prisma.categoryGroup.findFirst({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | CategoryGroupWhereInput | No |
| orderBy | CategoryGroupOrderByWithRelationInput[] | CategoryGroupOrderByWithRelationInput | No |
| cursor | CategoryGroupWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | CategoryGroupScalarFieldEnum | CategoryGroupScalarFieldEnum[] | No |
Find zero or more CategoryGroup
// Get all CategoryGroup
const CategoryGroup = await prisma.categoryGroup.findMany()
// Get first 10 CategoryGroup
const CategoryGroup = await prisma.categoryGroup.findMany({ take: 10 })
| Name | Type | Required |
|---|---|---|
| where | CategoryGroupWhereInput | No |
| orderBy | CategoryGroupOrderByWithRelationInput[] | CategoryGroupOrderByWithRelationInput | No |
| cursor | CategoryGroupWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | CategoryGroupScalarFieldEnum | CategoryGroupScalarFieldEnum[] | No |
Create one CategoryGroup
// Create one CategoryGroup
const CategoryGroup = await prisma.categoryGroup.create({
data: {
// ... data to create a CategoryGroup
}
})
| Name | Type | Required |
|---|---|---|
| data | CategoryGroupCreateInput | CategoryGroupUncheckedCreateInput | Yes |
Delete one CategoryGroup
// Delete one CategoryGroup
const CategoryGroup = await prisma.categoryGroup.delete({
where: {
// ... filter to delete one CategoryGroup
}
})
| Name | Type | Required |
|---|---|---|
| where | CategoryGroupWhereUniqueInput | Yes |
Update one CategoryGroup
// Update one CategoryGroup
const categoryGroup = await prisma.categoryGroup.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | CategoryGroupUpdateInput | CategoryGroupUncheckedUpdateInput | Yes |
| where | CategoryGroupWhereUniqueInput | Yes |
Delete zero or more CategoryGroup
// Delete a few CategoryGroup
const { count } = await prisma.categoryGroup.deleteMany({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | CategoryGroupWhereInput | No |
Update zero or one CategoryGroup
const { count } = await prisma.categoryGroup.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | CategoryGroupUpdateManyMutationInput | CategoryGroupUncheckedUpdateManyInput | Yes |
| where | CategoryGroupWhereInput | No |
Create or update one CategoryGroup
// Update or create a CategoryGroup
const categoryGroup = await prisma.categoryGroup.upsert({
create: {
// ... data to create a CategoryGroup
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the CategoryGroup we want to update
}
})
| Name | Type | Required |
|---|---|---|
| where | CategoryGroupWhereUniqueInput | Yes |
| create | CategoryGroupCreateInput | CategoryGroupUncheckedCreateInput | Yes |
| update | CategoryGroupUpdateInput | CategoryGroupUncheckedUpdateInput | Yes |
| Name | Value |
|---|---|
| @@unique |
|
| @@index |
|
| Name | Type | Attributes | Required | Comment |
|---|---|---|---|---|
| id | String |
|
Yes | - |
| key | String |
|
Yes | - |
| eventDoubles | EventDouble[] |
|
Yes | - |
| categoryGroup | CategoryGroup? |
|
No | - |
| categoryGroupId | String? |
|
No | - |
| firstPlace | Double? |
|
No | - |
| firstPlaceDoublesId | String? |
|
No | - |
| secondPlace | Double? |
|
No | - |
| secondPlaceDoublesId | String? |
|
No | - |
| groupMatches | EventMatch[] |
|
Yes | - |
| groupFinished | Boolean |
|
Yes | - |
Find zero or one DoublesGroup
// Get one DoublesGroup
const doublesGroup = await prisma.doublesGroup.findUnique({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | DoublesGroupWhereUniqueInput | Yes |
Find first DoublesGroup
// Get one DoublesGroup
const doublesGroup = await prisma.doublesGroup.findFirst({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | DoublesGroupWhereInput | No |
| orderBy | DoublesGroupOrderByWithRelationInput[] | DoublesGroupOrderByWithRelationInput | No |
| cursor | DoublesGroupWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | DoublesGroupScalarFieldEnum | DoublesGroupScalarFieldEnum[] | No |
Find zero or more DoublesGroup
// Get all DoublesGroup
const DoublesGroup = await prisma.doublesGroup.findMany()
// Get first 10 DoublesGroup
const DoublesGroup = await prisma.doublesGroup.findMany({ take: 10 })
| Name | Type | Required |
|---|---|---|
| where | DoublesGroupWhereInput | No |
| orderBy | DoublesGroupOrderByWithRelationInput[] | DoublesGroupOrderByWithRelationInput | No |
| cursor | DoublesGroupWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | DoublesGroupScalarFieldEnum | DoublesGroupScalarFieldEnum[] | No |
Create one DoublesGroup
// Create one DoublesGroup
const DoublesGroup = await prisma.doublesGroup.create({
data: {
// ... data to create a DoublesGroup
}
})
| Name | Type | Required |
|---|---|---|
| data | DoublesGroupCreateInput | DoublesGroupUncheckedCreateInput | Yes |
Delete one DoublesGroup
// Delete one DoublesGroup
const DoublesGroup = await prisma.doublesGroup.delete({
where: {
// ... filter to delete one DoublesGroup
}
})
| Name | Type | Required |
|---|---|---|
| where | DoublesGroupWhereUniqueInput | Yes |
Update one DoublesGroup
// Update one DoublesGroup
const doublesGroup = await prisma.doublesGroup.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | DoublesGroupUpdateInput | DoublesGroupUncheckedUpdateInput | Yes |
| where | DoublesGroupWhereUniqueInput | Yes |
Delete zero or more DoublesGroup
// Delete a few DoublesGroup
const { count } = await prisma.doublesGroup.deleteMany({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | DoublesGroupWhereInput | No |
Update zero or one DoublesGroup
const { count } = await prisma.doublesGroup.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | DoublesGroupUpdateManyMutationInput | DoublesGroupUncheckedUpdateManyInput | Yes |
| where | DoublesGroupWhereInput | No |
Create or update one DoublesGroup
// Update or create a DoublesGroup
const doublesGroup = await prisma.doublesGroup.upsert({
create: {
// ... data to create a DoublesGroup
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the DoublesGroup we want to update
}
})
| Name | Type | Required |
|---|---|---|
| where | DoublesGroupWhereUniqueInput | Yes |
| create | DoublesGroupCreateInput | DoublesGroupUncheckedCreateInput | Yes |
| update | DoublesGroupUpdateInput | DoublesGroupUncheckedUpdateInput | Yes |
| Name | Value |
|---|---|
| @@id |
|
| Name | Type | Attributes | Required | Comment |
|---|---|---|---|---|
| event | Event |
|
Yes | - |
| eventId | String |
|
Yes | - |
| double | Double |
|
Yes | - |
| doubleId | String |
|
Yes | - |
| category | Category |
|
Yes | - |
| categoryId | String |
|
Yes | - |
| status | RequestStatus |
|
Yes | - |
Find zero or one EventRequest
// Get one EventRequest
const eventRequest = await prisma.eventRequest.findUnique({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | EventRequestWhereUniqueInput | Yes |
Find first EventRequest
// Get one EventRequest
const eventRequest = await prisma.eventRequest.findFirst({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | EventRequestWhereInput | No |
| orderBy | EventRequestOrderByWithRelationInput[] | EventRequestOrderByWithRelationInput | No |
| cursor | EventRequestWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | EventRequestScalarFieldEnum | EventRequestScalarFieldEnum[] | No |
Find zero or more EventRequest
// Get all EventRequest
const EventRequest = await prisma.eventRequest.findMany()
// Get first 10 EventRequest
const EventRequest = await prisma.eventRequest.findMany({ take: 10 })
| Name | Type | Required |
|---|---|---|
| where | EventRequestWhereInput | No |
| orderBy | EventRequestOrderByWithRelationInput[] | EventRequestOrderByWithRelationInput | No |
| cursor | EventRequestWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | EventRequestScalarFieldEnum | EventRequestScalarFieldEnum[] | No |
Create one EventRequest
// Create one EventRequest
const EventRequest = await prisma.eventRequest.create({
data: {
// ... data to create a EventRequest
}
})
| Name | Type | Required |
|---|---|---|
| data | EventRequestCreateInput | EventRequestUncheckedCreateInput | Yes |
Delete one EventRequest
// Delete one EventRequest
const EventRequest = await prisma.eventRequest.delete({
where: {
// ... filter to delete one EventRequest
}
})
| Name | Type | Required |
|---|---|---|
| where | EventRequestWhereUniqueInput | Yes |
Update one EventRequest
// Update one EventRequest
const eventRequest = await prisma.eventRequest.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | EventRequestUpdateInput | EventRequestUncheckedUpdateInput | Yes |
| where | EventRequestWhereUniqueInput | Yes |
Delete zero or more EventRequest
// Delete a few EventRequest
const { count } = await prisma.eventRequest.deleteMany({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | EventRequestWhereInput | No |
Update zero or one EventRequest
const { count } = await prisma.eventRequest.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | EventRequestUpdateManyMutationInput | EventRequestUncheckedUpdateManyInput | Yes |
| where | EventRequestWhereInput | No |
Create or update one EventRequest
// Update or create a EventRequest
const eventRequest = await prisma.eventRequest.upsert({
create: {
// ... data to create a EventRequest
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the EventRequest we want to update
}
})
| Name | Type | Required |
|---|---|---|
| where | EventRequestWhereUniqueInput | Yes |
| create | EventRequestCreateInput | EventRequestUncheckedCreateInput | Yes |
| update | EventRequestUpdateInput | EventRequestUncheckedUpdateInput | Yes |
| Name | Value |
|---|---|
| @@unique |
|
| @@index |
|
| Name | Type | Attributes | Required | Comment |
|---|---|---|---|---|
| id | String |
|
Yes | - |
| name | String |
|
Yes | - |
| isAvailable | Boolean |
|
Yes | - |
| events | Event[] |
|
Yes | - |
| matches | Match[] |
|
Yes | - |
| place | Place |
|
Yes | - |
| placeId | String |
|
Yes | - |
| matchDates | MatchDate[] |
|
Yes | - |
Find zero or one Court
// Get one Court
const court = await prisma.court.findUnique({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | CourtWhereUniqueInput | Yes |
Find first Court
// Get one Court
const court = await prisma.court.findFirst({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | CourtWhereInput | No |
| orderBy | CourtOrderByWithRelationInput[] | CourtOrderByWithRelationInput | No |
| cursor | CourtWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | CourtScalarFieldEnum | CourtScalarFieldEnum[] | No |
Find zero or more Court
// Get all Court
const Court = await prisma.court.findMany()
// Get first 10 Court
const Court = await prisma.court.findMany({ take: 10 })
| Name | Type | Required |
|---|---|---|
| where | CourtWhereInput | No |
| orderBy | CourtOrderByWithRelationInput[] | CourtOrderByWithRelationInput | No |
| cursor | CourtWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | CourtScalarFieldEnum | CourtScalarFieldEnum[] | No |
Create one Court
// Create one Court
const Court = await prisma.court.create({
data: {
// ... data to create a Court
}
})
| Name | Type | Required |
|---|---|---|
| data | CourtCreateInput | CourtUncheckedCreateInput | Yes |
Delete one Court
// Delete one Court
const Court = await prisma.court.delete({
where: {
// ... filter to delete one Court
}
})
| Name | Type | Required |
|---|---|---|
| where | CourtWhereUniqueInput | Yes |
Update one Court
// Update one Court
const court = await prisma.court.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | CourtUpdateInput | CourtUncheckedUpdateInput | Yes |
| where | CourtWhereUniqueInput | Yes |
Delete zero or more Court
// Delete a few Court
const { count } = await prisma.court.deleteMany({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | CourtWhereInput | No |
Update zero or one Court
const { count } = await prisma.court.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | CourtUpdateManyMutationInput | CourtUncheckedUpdateManyInput | Yes |
| where | CourtWhereInput | No |
Create or update one Court
// Update or create a Court
const court = await prisma.court.upsert({
create: {
// ... data to create a Court
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the Court we want to update
}
})
| Name | Type | Required |
|---|---|---|
| where | CourtWhereUniqueInput | Yes |
| create | CourtCreateInput | CourtUncheckedCreateInput | Yes |
| update | CourtUpdateInput | CourtUncheckedUpdateInput | Yes |
| Name | Value |
|---|---|
| @@id |
|
| Name | Type | Attributes | Required | Comment |
|---|---|---|---|---|
| event | Event |
|
Yes | - |
| eventId | String |
|
Yes | - |
| double | Double |
|
Yes | - |
| doubleId | String |
|
Yes | - |
| category | Category |
|
Yes | - |
| categoryId | String |
|
Yes | - |
| atRest | MatchDate? |
|
No | - |
| atRestId | String? |
|
No | - |
| DoublesGroup | DoublesGroup? |
|
No | - |
| doublesGroupId | String? |
|
No | - |
Find zero or one EventDouble
// Get one EventDouble
const eventDouble = await prisma.eventDouble.findUnique({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | EventDoubleWhereUniqueInput | Yes |
Find first EventDouble
// Get one EventDouble
const eventDouble = await prisma.eventDouble.findFirst({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | EventDoubleWhereInput | No |
| orderBy | EventDoubleOrderByWithRelationInput[] | EventDoubleOrderByWithRelationInput | No |
| cursor | EventDoubleWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | EventDoubleScalarFieldEnum | EventDoubleScalarFieldEnum[] | No |
Find zero or more EventDouble
// Get all EventDouble
const EventDouble = await prisma.eventDouble.findMany()
// Get first 10 EventDouble
const EventDouble = await prisma.eventDouble.findMany({ take: 10 })
| Name | Type | Required |
|---|---|---|
| where | EventDoubleWhereInput | No |
| orderBy | EventDoubleOrderByWithRelationInput[] | EventDoubleOrderByWithRelationInput | No |
| cursor | EventDoubleWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | EventDoubleScalarFieldEnum | EventDoubleScalarFieldEnum[] | No |
Create one EventDouble
// Create one EventDouble
const EventDouble = await prisma.eventDouble.create({
data: {
// ... data to create a EventDouble
}
})
| Name | Type | Required |
|---|---|---|
| data | EventDoubleCreateInput | EventDoubleUncheckedCreateInput | Yes |
Delete one EventDouble
// Delete one EventDouble
const EventDouble = await prisma.eventDouble.delete({
where: {
// ... filter to delete one EventDouble
}
})
| Name | Type | Required |
|---|---|---|
| where | EventDoubleWhereUniqueInput | Yes |
Update one EventDouble
// Update one EventDouble
const eventDouble = await prisma.eventDouble.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | EventDoubleUpdateInput | EventDoubleUncheckedUpdateInput | Yes |
| where | EventDoubleWhereUniqueInput | Yes |
Delete zero or more EventDouble
// Delete a few EventDouble
const { count } = await prisma.eventDouble.deleteMany({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | EventDoubleWhereInput | No |
Update zero or one EventDouble
const { count } = await prisma.eventDouble.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | EventDoubleUpdateManyMutationInput | EventDoubleUncheckedUpdateManyInput | Yes |
| where | EventDoubleWhereInput | No |
Create or update one EventDouble
// Update or create a EventDouble
const eventDouble = await prisma.eventDouble.upsert({
create: {
// ... data to create a EventDouble
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the EventDouble we want to update
}
})
| Name | Type | Required |
|---|---|---|
| where | EventDoubleWhereUniqueInput | Yes |
| create | EventDoubleCreateInput | EventDoubleUncheckedCreateInput | Yes |
| update | EventDoubleUpdateInput | EventDoubleUncheckedUpdateInput | Yes |
| Name | Value |
|---|---|
| @@unique |
|
| @@index |
|
| Name | Type | Attributes | Required | Comment |
|---|---|---|---|---|
| id | String |
|
Yes | - |
| level | Int |
|
Yes | - |
| players | Player[] |
|
Yes | - |
| doubles | Double[] |
|
Yes | - |
| type | CatType |
|
Yes | - |
| events | Event[] |
|
Yes | - |
| matches | Match[] |
|
Yes | - |
| eventDoubles | EventDouble[] |
|
Yes | - |
| eventRequests | EventRequest[] |
|
Yes | - |
| categoryGroup | CategoryGroup[] |
|
Yes | - |
Find zero or one Category
// Get one Category
const category = await prisma.category.findUnique({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | CategoryWhereUniqueInput | Yes |
Find first Category
// Get one Category
const category = await prisma.category.findFirst({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | CategoryWhereInput | No |
| orderBy | CategoryOrderByWithRelationInput[] | CategoryOrderByWithRelationInput | No |
| cursor | CategoryWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | CategoryScalarFieldEnum | CategoryScalarFieldEnum[] | No |
Find zero or more Category
// Get all Category
const Category = await prisma.category.findMany()
// Get first 10 Category
const Category = await prisma.category.findMany({ take: 10 })
| Name | Type | Required |
|---|---|---|
| where | CategoryWhereInput | No |
| orderBy | CategoryOrderByWithRelationInput[] | CategoryOrderByWithRelationInput | No |
| cursor | CategoryWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | CategoryScalarFieldEnum | CategoryScalarFieldEnum[] | No |
Create one Category
// Create one Category
const Category = await prisma.category.create({
data: {
// ... data to create a Category
}
})
| Name | Type | Required |
|---|---|---|
| data | CategoryCreateInput | CategoryUncheckedCreateInput | Yes |
Delete one Category
// Delete one Category
const Category = await prisma.category.delete({
where: {
// ... filter to delete one Category
}
})
| Name | Type | Required |
|---|---|---|
| where | CategoryWhereUniqueInput | Yes |
Update one Category
// Update one Category
const category = await prisma.category.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | CategoryUpdateInput | CategoryUncheckedUpdateInput | Yes |
| where | CategoryWhereUniqueInput | Yes |
Delete zero or more Category
// Delete a few Category
const { count } = await prisma.category.deleteMany({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | CategoryWhereInput | No |
Update zero or one Category
const { count } = await prisma.category.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | CategoryUpdateManyMutationInput | CategoryUncheckedUpdateManyInput | Yes |
| where | CategoryWhereInput | No |
Create or update one Category
// Update or create a Category
const category = await prisma.category.upsert({
create: {
// ... data to create a Category
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the Category we want to update
}
})
| Name | Type | Required |
|---|---|---|
| where | CategoryWhereUniqueInput | Yes |
| create | CategoryCreateInput | CategoryUncheckedCreateInput | Yes |
| update | CategoryUpdateInput | CategoryUncheckedUpdateInput | Yes |
| Name | Value |
|---|---|
| @@id |
|
| Name | Type | Attributes | Required | Comment |
|---|---|---|---|---|
| number | Int |
|
Yes | - |
| type | EventMatchType |
|
Yes | - |
| event | Event |
|
Yes | - |
| eventId | String |
|
Yes | - |
| match | Match |
|
Yes | - |
| matchId | String |
|
Yes | - |
| categoryGroup | CategoryGroup? |
|
No | - |
| categoryGroupId | String? |
|
No | - |
| doublesGroup | DoublesGroup? |
|
No | - |
| doublesGroupId | String? |
|
No | - |
Find zero or one EventMatch
// Get one EventMatch
const eventMatch = await prisma.eventMatch.findUnique({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | EventMatchWhereUniqueInput | Yes |
Find first EventMatch
// Get one EventMatch
const eventMatch = await prisma.eventMatch.findFirst({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | EventMatchWhereInput | No |
| orderBy | EventMatchOrderByWithRelationInput[] | EventMatchOrderByWithRelationInput | No |
| cursor | EventMatchWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | EventMatchScalarFieldEnum | EventMatchScalarFieldEnum[] | No |
Find zero or more EventMatch
// Get all EventMatch
const EventMatch = await prisma.eventMatch.findMany()
// Get first 10 EventMatch
const EventMatch = await prisma.eventMatch.findMany({ take: 10 })
| Name | Type | Required |
|---|---|---|
| where | EventMatchWhereInput | No |
| orderBy | EventMatchOrderByWithRelationInput[] | EventMatchOrderByWithRelationInput | No |
| cursor | EventMatchWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | EventMatchScalarFieldEnum | EventMatchScalarFieldEnum[] | No |
Create one EventMatch
// Create one EventMatch
const EventMatch = await prisma.eventMatch.create({
data: {
// ... data to create a EventMatch
}
})
| Name | Type | Required |
|---|---|---|
| data | EventMatchCreateInput | EventMatchUncheckedCreateInput | Yes |
Delete one EventMatch
// Delete one EventMatch
const EventMatch = await prisma.eventMatch.delete({
where: {
// ... filter to delete one EventMatch
}
})
| Name | Type | Required |
|---|---|---|
| where | EventMatchWhereUniqueInput | Yes |
Update one EventMatch
// Update one EventMatch
const eventMatch = await prisma.eventMatch.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | EventMatchUpdateInput | EventMatchUncheckedUpdateInput | Yes |
| where | EventMatchWhereUniqueInput | Yes |
Delete zero or more EventMatch
// Delete a few EventMatch
const { count } = await prisma.eventMatch.deleteMany({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | EventMatchWhereInput | No |
Update zero or one EventMatch
const { count } = await prisma.eventMatch.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | EventMatchUpdateManyMutationInput | EventMatchUncheckedUpdateManyInput | Yes |
| where | EventMatchWhereInput | No |
Create or update one EventMatch
// Update or create a EventMatch
const eventMatch = await prisma.eventMatch.upsert({
create: {
// ... data to create a EventMatch
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the EventMatch we want to update
}
})
| Name | Type | Required |
|---|---|---|
| where | EventMatchWhereUniqueInput | Yes |
| create | EventMatchCreateInput | EventMatchUncheckedCreateInput | Yes |
| update | EventMatchUpdateInput | EventMatchUncheckedUpdateInput | Yes |
| Name | Value |
|---|---|
| @@unique |
|
| @@index |
|
| Name | Type | Attributes | Required | Comment |
|---|---|---|---|---|
| matchA | Match? |
|
No | - |
| matchAId | String |
|
Yes | - |
| matchB | Match? |
|
No | - |
| matchBId | String? |
|
No | - |
| refMatch | Match? |
|
No | - |
| refMatchId | String? |
|
No | - |
| categoryGroup | CategoryGroup? |
|
No | - |
| categoryGroupId | String? |
|
No | - |
| isUpdated | Boolean |
|
Yes | - |
Find zero or one MatchesReferenced
// Get one MatchesReferenced
const matchesReferenced = await prisma.matchesReferenced.findUnique({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | MatchesReferencedWhereUniqueInput | Yes |
Find first MatchesReferenced
// Get one MatchesReferenced
const matchesReferenced = await prisma.matchesReferenced.findFirst({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | MatchesReferencedWhereInput | No |
| orderBy | MatchesReferencedOrderByWithRelationInput[] | MatchesReferencedOrderByWithRelationInput | No |
| cursor | MatchesReferencedWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | MatchesReferencedScalarFieldEnum | MatchesReferencedScalarFieldEnum[] | No |
Find zero or more MatchesReferenced
// Get all MatchesReferenced
const MatchesReferenced = await prisma.matchesReferenced.findMany()
// Get first 10 MatchesReferenced
const MatchesReferenced = await prisma.matchesReferenced.findMany({ take: 10 })
| Name | Type | Required |
|---|---|---|
| where | MatchesReferencedWhereInput | No |
| orderBy | MatchesReferencedOrderByWithRelationInput[] | MatchesReferencedOrderByWithRelationInput | No |
| cursor | MatchesReferencedWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | MatchesReferencedScalarFieldEnum | MatchesReferencedScalarFieldEnum[] | No |
Create one MatchesReferenced
// Create one MatchesReferenced
const MatchesReferenced = await prisma.matchesReferenced.create({
data: {
// ... data to create a MatchesReferenced
}
})
| Name | Type | Required |
|---|---|---|
| data | MatchesReferencedCreateInput | MatchesReferencedUncheckedCreateInput | Yes |
Delete one MatchesReferenced
// Delete one MatchesReferenced
const MatchesReferenced = await prisma.matchesReferenced.delete({
where: {
// ... filter to delete one MatchesReferenced
}
})
| Name | Type | Required |
|---|---|---|
| where | MatchesReferencedWhereUniqueInput | Yes |
Update one MatchesReferenced
// Update one MatchesReferenced
const matchesReferenced = await prisma.matchesReferenced.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | MatchesReferencedUpdateInput | MatchesReferencedUncheckedUpdateInput | Yes |
| where | MatchesReferencedWhereUniqueInput | Yes |
Delete zero or more MatchesReferenced
// Delete a few MatchesReferenced
const { count } = await prisma.matchesReferenced.deleteMany({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | MatchesReferencedWhereInput | No |
Update zero or one MatchesReferenced
const { count } = await prisma.matchesReferenced.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | MatchesReferencedUpdateManyMutationInput | MatchesReferencedUncheckedUpdateManyInput | Yes |
| where | MatchesReferencedWhereInput | No |
Create or update one MatchesReferenced
// Update or create a MatchesReferenced
const matchesReferenced = await prisma.matchesReferenced.upsert({
create: {
// ... data to create a MatchesReferenced
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the MatchesReferenced we want to update
}
})
| Name | Type | Required |
|---|---|---|
| where | MatchesReferencedWhereUniqueInput | Yes |
| create | MatchesReferencedCreateInput | MatchesReferencedUncheckedCreateInput | Yes |
| update | MatchesReferencedUpdateInput | MatchesReferencedUncheckedUpdateInput | Yes |
| Name | Type | Attributes | Required | Comment |
|---|---|---|---|---|
| id | String |
|
Yes | - |
| players | Player[] |
|
Yes | - |
| isFinished | Boolean |
|
Yes | - |
| category | Category? |
|
No | - |
| categoryId | String? |
|
No | - |
| winner | Double? |
|
No | - |
| winnerDoublesId | String? |
|
No | - |
| sets | Set[] |
|
Yes | - |
| doubles | Double[] |
|
Yes | - |
| event | Event? |
|
No | - |
| eventId | String? |
|
No | - |
| type | MatchType |
|
Yes | - |
| matchDate | MatchDate? |
|
No | - |
| court | Court? |
|
No | - |
| courtId | String? |
|
No | - |
| invite | Invite? |
|
No | - |
| eventMatch | EventMatch? |
|
No | - |
| matchRefA | MatchesReferenced? |
|
No | - |
| matchRefB | MatchesReferenced? |
|
No | - |
| matchRef | MatchesReferenced? |
|
No | - |
Find zero or one Match
// Get one Match
const match = await prisma.match.findUnique({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | MatchWhereUniqueInput | Yes |
Find first Match
// Get one Match
const match = await prisma.match.findFirst({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | MatchWhereInput | No |
| orderBy | MatchOrderByWithRelationInput[] | MatchOrderByWithRelationInput | No |
| cursor | MatchWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | MatchScalarFieldEnum | MatchScalarFieldEnum[] | No |
Find zero or more Match
// Get all Match
const Match = await prisma.match.findMany()
// Get first 10 Match
const Match = await prisma.match.findMany({ take: 10 })
| Name | Type | Required |
|---|---|---|
| where | MatchWhereInput | No |
| orderBy | MatchOrderByWithRelationInput[] | MatchOrderByWithRelationInput | No |
| cursor | MatchWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | MatchScalarFieldEnum | MatchScalarFieldEnum[] | No |
Create one Match
// Create one Match
const Match = await prisma.match.create({
data: {
// ... data to create a Match
}
})
| Name | Type | Required |
|---|---|---|
| data | MatchCreateInput | MatchUncheckedCreateInput | No |
Delete one Match
// Delete one Match
const Match = await prisma.match.delete({
where: {
// ... filter to delete one Match
}
})
| Name | Type | Required |
|---|---|---|
| where | MatchWhereUniqueInput | Yes |
Update one Match
// Update one Match
const match = await prisma.match.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | MatchUpdateInput | MatchUncheckedUpdateInput | Yes |
| where | MatchWhereUniqueInput | Yes |
Delete zero or more Match
// Delete a few Match
const { count } = await prisma.match.deleteMany({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | MatchWhereInput | No |
Update zero or one Match
const { count } = await prisma.match.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | MatchUpdateManyMutationInput | MatchUncheckedUpdateManyInput | Yes |
| where | MatchWhereInput | No |
Create or update one Match
// Update or create a Match
const match = await prisma.match.upsert({
create: {
// ... data to create a Match
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the Match we want to update
}
})
| Name | Type | Required |
|---|---|---|
| where | MatchWhereUniqueInput | Yes |
| create | MatchCreateInput | MatchUncheckedCreateInput | Yes |
| update | MatchUpdateInput | MatchUncheckedUpdateInput | Yes |
| Name | Value |
|---|---|
| @@unique |
|
| @@index |
|
| Name | Type | Attributes | Required | Comment |
|---|---|---|---|---|
| id | String |
|
Yes | - |
| event | Event |
|
Yes | - |
| eventId | String |
|
Yes | - |
| match | Match? |
|
No | - |
| matchId | String? |
|
No | - |
| start | DateTime |
|
Yes | - |
| finish | DateTime |
|
Yes | - |
| court | Court |
|
Yes | - |
| courtId | String |
|
Yes | - |
| atRest | EventDouble[] |
|
Yes | - |
Find zero or one MatchDate
// Get one MatchDate
const matchDate = await prisma.matchDate.findUnique({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | MatchDateWhereUniqueInput | Yes |
Find first MatchDate
// Get one MatchDate
const matchDate = await prisma.matchDate.findFirst({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | MatchDateWhereInput | No |
| orderBy | MatchDateOrderByWithRelationInput[] | MatchDateOrderByWithRelationInput | No |
| cursor | MatchDateWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | MatchDateScalarFieldEnum | MatchDateScalarFieldEnum[] | No |
Find zero or more MatchDate
// Get all MatchDate
const MatchDate = await prisma.matchDate.findMany()
// Get first 10 MatchDate
const MatchDate = await prisma.matchDate.findMany({ take: 10 })
| Name | Type | Required |
|---|---|---|
| where | MatchDateWhereInput | No |
| orderBy | MatchDateOrderByWithRelationInput[] | MatchDateOrderByWithRelationInput | No |
| cursor | MatchDateWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | MatchDateScalarFieldEnum | MatchDateScalarFieldEnum[] | No |
Create one MatchDate
// Create one MatchDate
const MatchDate = await prisma.matchDate.create({
data: {
// ... data to create a MatchDate
}
})
| Name | Type | Required |
|---|---|---|
| data | MatchDateCreateInput | MatchDateUncheckedCreateInput | Yes |
Delete one MatchDate
// Delete one MatchDate
const MatchDate = await prisma.matchDate.delete({
where: {
// ... filter to delete one MatchDate
}
})
| Name | Type | Required |
|---|---|---|
| where | MatchDateWhereUniqueInput | Yes |
Update one MatchDate
// Update one MatchDate
const matchDate = await prisma.matchDate.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | MatchDateUpdateInput | MatchDateUncheckedUpdateInput | Yes |
| where | MatchDateWhereUniqueInput | Yes |
Delete zero or more MatchDate
// Delete a few MatchDate
const { count } = await prisma.matchDate.deleteMany({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | MatchDateWhereInput | No |
Update zero or one MatchDate
const { count } = await prisma.matchDate.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | MatchDateUpdateManyMutationInput | MatchDateUncheckedUpdateManyInput | Yes |
| where | MatchDateWhereInput | No |
Create or update one MatchDate
// Update or create a MatchDate
const matchDate = await prisma.matchDate.upsert({
create: {
// ... data to create a MatchDate
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the MatchDate we want to update
}
})
| Name | Type | Required |
|---|---|---|
| where | MatchDateWhereUniqueInput | Yes |
| create | MatchDateCreateInput | MatchDateUncheckedCreateInput | Yes |
| update | MatchDateUpdateInput | MatchDateUncheckedUpdateInput | Yes |
| Name | Type | Attributes | Required | Comment |
|---|---|---|---|---|
| id | String |
|
Yes | - |
| type | SetType |
|
Yes | - |
| number | Int |
|
Yes | - |
| doubles | Double[] |
|
Yes | - |
| winner | Double? |
|
No | - |
| setWinnerId | String? |
|
No | - |
| result | String? |
|
No | - |
| match | Match |
|
Yes | - |
| matchId | String |
|
Yes | - |
| games | Game[] |
|
Yes | - |
| isFinished | Boolean |
|
Yes | - |
| events | Event[] |
|
Yes | - |
Find zero or one Set
// Get one Set
const set = await prisma.set.findUnique({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | SetWhereUniqueInput | Yes |
Find first Set
// Get one Set
const set = await prisma.set.findFirst({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | SetWhereInput | No |
| orderBy | SetOrderByWithRelationInput[] | SetOrderByWithRelationInput | No |
| cursor | SetWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | SetScalarFieldEnum | SetScalarFieldEnum[] | No |
Find zero or more Set
// Get all Set
const Set = await prisma.set.findMany()
// Get first 10 Set
const Set = await prisma.set.findMany({ take: 10 })
| Name | Type | Required |
|---|---|---|
| where | SetWhereInput | No |
| orderBy | SetOrderByWithRelationInput[] | SetOrderByWithRelationInput | No |
| cursor | SetWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | SetScalarFieldEnum | SetScalarFieldEnum[] | No |
Create one Set
// Create one Set
const Set = await prisma.set.create({
data: {
// ... data to create a Set
}
})
| Name | Type | Required |
|---|---|---|
| data | SetCreateInput | SetUncheckedCreateInput | Yes |
Delete one Set
// Delete one Set
const Set = await prisma.set.delete({
where: {
// ... filter to delete one Set
}
})
| Name | Type | Required |
|---|---|---|
| where | SetWhereUniqueInput | Yes |
Update one Set
// Update one Set
const set = await prisma.set.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | SetUpdateInput | SetUncheckedUpdateInput | Yes |
| where | SetWhereUniqueInput | Yes |
Delete zero or more Set
// Delete a few Set
const { count } = await prisma.set.deleteMany({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | SetWhereInput | No |
Update zero or one Set
const { count } = await prisma.set.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | SetUpdateManyMutationInput | SetUncheckedUpdateManyInput | Yes |
| where | SetWhereInput | No |
Create or update one Set
// Update or create a Set
const set = await prisma.set.upsert({
create: {
// ... data to create a Set
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the Set we want to update
}
})
| Name | Type | Required |
|---|---|---|
| where | SetWhereUniqueInput | Yes |
| create | SetCreateInput | SetUncheckedCreateInput | Yes |
| update | SetUpdateInput | SetUncheckedUpdateInput | Yes |
Find zero or one Game
// Get one Game
const game = await prisma.game.findUnique({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | GameWhereUniqueInput | Yes |
Find first Game
// Get one Game
const game = await prisma.game.findFirst({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | GameWhereInput | No |
| orderBy | GameOrderByWithRelationInput[] | GameOrderByWithRelationInput | No |
| cursor | GameWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | GameScalarFieldEnum | GameScalarFieldEnum[] | No |
Find zero or more Game
// Get all Game
const Game = await prisma.game.findMany()
// Get first 10 Game
const Game = await prisma.game.findMany({ take: 10 })
| Name | Type | Required |
|---|---|---|
| where | GameWhereInput | No |
| orderBy | GameOrderByWithRelationInput[] | GameOrderByWithRelationInput | No |
| cursor | GameWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | GameScalarFieldEnum | GameScalarFieldEnum[] | No |
Create one Game
// Create one Game
const Game = await prisma.game.create({
data: {
// ... data to create a Game
}
})
| Name | Type | Required |
|---|---|---|
| data | GameCreateInput | GameUncheckedCreateInput | Yes |
Delete one Game
// Delete one Game
const Game = await prisma.game.delete({
where: {
// ... filter to delete one Game
}
})
| Name | Type | Required |
|---|---|---|
| where | GameWhereUniqueInput | Yes |
Update one Game
// Update one Game
const game = await prisma.game.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | GameUpdateInput | GameUncheckedUpdateInput | Yes |
| where | GameWhereUniqueInput | Yes |
Delete zero or more Game
// Delete a few Game
const { count } = await prisma.game.deleteMany({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | GameWhereInput | No |
Update zero or one Game
const { count } = await prisma.game.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | GameUpdateManyMutationInput | GameUncheckedUpdateManyInput | Yes |
| where | GameWhereInput | No |
Create or update one Game
// Update or create a Game
const game = await prisma.game.upsert({
create: {
// ... data to create a Game
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the Game we want to update
}
})
| Name | Type | Required |
|---|---|---|
| where | GameWhereUniqueInput | Yes |
| create | GameCreateInput | GameUncheckedCreateInput | Yes |
| update | GameUpdateInput | GameUncheckedUpdateInput | Yes |
| Name | Type | Attributes | Required | Comment |
|---|---|---|---|---|
| id | String |
|
Yes | - |
| firstName | String? |
|
No | - |
| lastName | String? |
|
No | - |
| String |
|
Yes | - | |
| password | String |
|
Yes | - |
| dob | DateTime? |
|
No | - |
| createdAt | DateTime |
|
Yes | - |
| updatedAt | DateTime |
|
Yes | - |
| player | Player? |
|
No | - |
| playerId | String? |
|
No | - |
| role | Role |
|
Yes | - |
| hashedRt | String? |
|
No | - |
| profileImage | String? |
|
No | - |
Find zero or one User
// Get one User
const user = await prisma.user.findUnique({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | UserWhereUniqueInput | Yes |
Find first User
// Get one User
const user = await prisma.user.findFirst({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | UserWhereInput | No |
| orderBy | UserOrderByWithRelationInput[] | UserOrderByWithRelationInput | No |
| cursor | UserWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | UserScalarFieldEnum | UserScalarFieldEnum[] | No |
Find zero or more User
// Get all User
const User = await prisma.user.findMany()
// Get first 10 User
const User = await prisma.user.findMany({ take: 10 })
| Name | Type | Required |
|---|---|---|
| where | UserWhereInput | No |
| orderBy | UserOrderByWithRelationInput[] | UserOrderByWithRelationInput | No |
| cursor | UserWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | UserScalarFieldEnum | UserScalarFieldEnum[] | No |
Create one User
// Create one User
const User = await prisma.user.create({
data: {
// ... data to create a User
}
})
| Name | Type | Required |
|---|---|---|
| data | UserCreateInput | UserUncheckedCreateInput | Yes |
Delete one User
// Delete one User
const User = await prisma.user.delete({
where: {
// ... filter to delete one User
}
})
| Name | Type | Required |
|---|---|---|
| where | UserWhereUniqueInput | Yes |
Update one User
// Update one User
const user = await prisma.user.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | UserUpdateInput | UserUncheckedUpdateInput | Yes |
| where | UserWhereUniqueInput | Yes |
Delete zero or more User
// Delete a few User
const { count } = await prisma.user.deleteMany({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | UserWhereInput | No |
Update zero or one User
const { count } = await prisma.user.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | UserUpdateManyMutationInput | UserUncheckedUpdateManyInput | Yes |
| where | UserWhereInput | No |
Create or update one User
// Update or create a User
const user = await prisma.user.upsert({
create: {
// ... data to create a User
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the User we want to update
}
})
| Name | Type | Required |
|---|---|---|
| where | UserWhereUniqueInput | Yes |
| create | UserCreateInput | UserUncheckedCreateInput | Yes |
| update | UserUpdateInput | UserUncheckedUpdateInput | Yes |
| Name | Value |
|---|---|
| @@unique |
|
| @@index |
|
| Name | Type | Attributes | Required | Comment |
|---|---|---|---|---|
| id | String |
|
Yes | - |
| inviteType | InviteType |
|
Yes | - |
| players | Player[] |
|
Yes | - |
| double | Double? |
|
No | - |
| doublesId | String? |
|
No | - |
| event | Event? |
|
No | - |
| eventId | String? |
|
No | - |
| match | Match? |
|
No | - |
| matchId | String? |
|
No | - |
| inviterId | String |
|
Yes | - |
| invitedId | String |
|
Yes | - |
| createdAt | DateTime |
|
Yes | - |
Find zero or one Invite
// Get one Invite
const invite = await prisma.invite.findUnique({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | InviteWhereUniqueInput | Yes |
Find first Invite
// Get one Invite
const invite = await prisma.invite.findFirst({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | InviteWhereInput | No |
| orderBy | InviteOrderByWithRelationInput[] | InviteOrderByWithRelationInput | No |
| cursor | InviteWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | InviteScalarFieldEnum | InviteScalarFieldEnum[] | No |
Find zero or more Invite
// Get all Invite
const Invite = await prisma.invite.findMany()
// Get first 10 Invite
const Invite = await prisma.invite.findMany({ take: 10 })
| Name | Type | Required |
|---|---|---|
| where | InviteWhereInput | No |
| orderBy | InviteOrderByWithRelationInput[] | InviteOrderByWithRelationInput | No |
| cursor | InviteWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | InviteScalarFieldEnum | InviteScalarFieldEnum[] | No |
Create one Invite
// Create one Invite
const Invite = await prisma.invite.create({
data: {
// ... data to create a Invite
}
})
| Name | Type | Required |
|---|---|---|
| data | InviteCreateInput | InviteUncheckedCreateInput | Yes |
Delete one Invite
// Delete one Invite
const Invite = await prisma.invite.delete({
where: {
// ... filter to delete one Invite
}
})
| Name | Type | Required |
|---|---|---|
| where | InviteWhereUniqueInput | Yes |
Update one Invite
// Update one Invite
const invite = await prisma.invite.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | InviteUpdateInput | InviteUncheckedUpdateInput | Yes |
| where | InviteWhereUniqueInput | Yes |
Delete zero or more Invite
// Delete a few Invite
const { count } = await prisma.invite.deleteMany({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | InviteWhereInput | No |
Update zero or one Invite
const { count } = await prisma.invite.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | InviteUpdateManyMutationInput | InviteUncheckedUpdateManyInput | Yes |
| where | InviteWhereInput | No |
Create or update one Invite
// Update or create a Invite
const invite = await prisma.invite.upsert({
create: {
// ... data to create a Invite
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the Invite we want to update
}
})
| Name | Type | Required |
|---|---|---|
| where | InviteWhereUniqueInput | Yes |
| create | InviteCreateInput | InviteUncheckedCreateInput | Yes |
| update | InviteUpdateInput | InviteUncheckedUpdateInput | Yes |
| Name | Type | Attributes | Required | Comment |
|---|---|---|---|---|
| id | String |
|
Yes | - |
| firstName | String? |
|
No | - |
| lastName | String? |
|
No | - |
| category | Category |
|
Yes | - |
| categoryId | String |
|
Yes | - |
| position | PlayerPosition? |
|
No | - |
| matches | Match[] |
|
Yes | - |
| doubles | Double[] |
|
Yes | - |
| events | Event[] |
|
Yes | - |
| user | User? |
|
No | - |
| invites | Invite[] |
|
Yes | - |
Find zero or one Player
// Get one Player
const player = await prisma.player.findUnique({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | PlayerWhereUniqueInput | Yes |
Find first Player
// Get one Player
const player = await prisma.player.findFirst({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | PlayerWhereInput | No |
| orderBy | PlayerOrderByWithRelationInput[] | PlayerOrderByWithRelationInput | No |
| cursor | PlayerWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | PlayerScalarFieldEnum | PlayerScalarFieldEnum[] | No |
Find zero or more Player
// Get all Player
const Player = await prisma.player.findMany()
// Get first 10 Player
const Player = await prisma.player.findMany({ take: 10 })
| Name | Type | Required |
|---|---|---|
| where | PlayerWhereInput | No |
| orderBy | PlayerOrderByWithRelationInput[] | PlayerOrderByWithRelationInput | No |
| cursor | PlayerWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | PlayerScalarFieldEnum | PlayerScalarFieldEnum[] | No |
Create one Player
// Create one Player
const Player = await prisma.player.create({
data: {
// ... data to create a Player
}
})
| Name | Type | Required |
|---|---|---|
| data | PlayerCreateInput | PlayerUncheckedCreateInput | Yes |
Delete one Player
// Delete one Player
const Player = await prisma.player.delete({
where: {
// ... filter to delete one Player
}
})
| Name | Type | Required |
|---|---|---|
| where | PlayerWhereUniqueInput | Yes |
Update one Player
// Update one Player
const player = await prisma.player.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | PlayerUpdateInput | PlayerUncheckedUpdateInput | Yes |
| where | PlayerWhereUniqueInput | Yes |
Delete zero or more Player
// Delete a few Player
const { count } = await prisma.player.deleteMany({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | PlayerWhereInput | No |
Update zero or one Player
const { count } = await prisma.player.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | PlayerUpdateManyMutationInput | PlayerUncheckedUpdateManyInput | Yes |
| where | PlayerWhereInput | No |
Create or update one Player
// Update or create a Player
const player = await prisma.player.upsert({
create: {
// ... data to create a Player
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the Player we want to update
}
})
| Name | Type | Required |
|---|---|---|
| where | PlayerWhereUniqueInput | Yes |
| create | PlayerCreateInput | PlayerUncheckedCreateInput | Yes |
| update | PlayerUpdateInput | PlayerUncheckedUpdateInput | Yes |
| Name | Type | Attributes | Required | Comment |
|---|---|---|---|---|
| id | String |
|
Yes | - |
| players | Player[] |
|
Yes | - |
| matches | Match[] |
|
Yes | - |
| category | Category |
|
Yes | - |
| categoryId | String |
|
Yes | - |
| games | Game[] |
|
Yes | - |
| sets | Set[] |
|
Yes | - |
| matchesWins | Match[] |
|
Yes | - |
| setsWins | Set[] |
|
Yes | - |
| gamesWins | Game[] |
|
Yes | - |
| eventRequests | EventRequest[] |
|
Yes | - |
| eventDouble | EventDouble[] |
|
Yes | - |
| invites | Invite[] |
|
Yes | - |
| firstPlaceInGroups | DoublesGroup[] |
|
Yes | - |
| secondPlaceInGroups | DoublesGroup[] |
|
Yes | - |
| firstPlaceInCategory | CategoryGroup[] |
|
Yes | - |
| secondPlaceInCategory | CategoryGroup[] |
|
Yes | - |
Find zero or one Double
// Get one Double
const double = await prisma.double.findUnique({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | DoubleWhereUniqueInput | Yes |
Find first Double
// Get one Double
const double = await prisma.double.findFirst({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | DoubleWhereInput | No |
| orderBy | DoubleOrderByWithRelationInput[] | DoubleOrderByWithRelationInput | No |
| cursor | DoubleWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | DoubleScalarFieldEnum | DoubleScalarFieldEnum[] | No |
Find zero or more Double
// Get all Double
const Double = await prisma.double.findMany()
// Get first 10 Double
const Double = await prisma.double.findMany({ take: 10 })
| Name | Type | Required |
|---|---|---|
| where | DoubleWhereInput | No |
| orderBy | DoubleOrderByWithRelationInput[] | DoubleOrderByWithRelationInput | No |
| cursor | DoubleWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | DoubleScalarFieldEnum | DoubleScalarFieldEnum[] | No |
Create one Double
// Create one Double
const Double = await prisma.double.create({
data: {
// ... data to create a Double
}
})
| Name | Type | Required |
|---|---|---|
| data | DoubleCreateInput | DoubleUncheckedCreateInput | Yes |
Delete one Double
// Delete one Double
const Double = await prisma.double.delete({
where: {
// ... filter to delete one Double
}
})
| Name | Type | Required |
|---|---|---|
| where | DoubleWhereUniqueInput | Yes |
Update one Double
// Update one Double
const double = await prisma.double.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | DoubleUpdateInput | DoubleUncheckedUpdateInput | Yes |
| where | DoubleWhereUniqueInput | Yes |
Delete zero or more Double
// Delete a few Double
const { count } = await prisma.double.deleteMany({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | DoubleWhereInput | No |
Update zero or one Double
const { count } = await prisma.double.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | DoubleUpdateManyMutationInput | DoubleUncheckedUpdateManyInput | Yes |
| where | DoubleWhereInput | No |
Create or update one Double
// Update or create a Double
const double = await prisma.double.upsert({
create: {
// ... data to create a Double
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the Double we want to update
}
})
| Name | Type | Required |
|---|---|---|
| where | DoubleWhereUniqueInput | Yes |
| create | DoubleCreateInput | DoubleUncheckedCreateInput | Yes |
| update | DoubleUpdateInput | DoubleUncheckedUpdateInput | Yes |
Find zero or one Place
// Get one Place
const place = await prisma.place.findUnique({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | PlaceWhereUniqueInput | Yes |
Find first Place
// Get one Place
const place = await prisma.place.findFirst({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | PlaceWhereInput | No |
| orderBy | PlaceOrderByWithRelationInput[] | PlaceOrderByWithRelationInput | No |
| cursor | PlaceWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | PlaceScalarFieldEnum | PlaceScalarFieldEnum[] | No |
Find zero or more Place
// Get all Place
const Place = await prisma.place.findMany()
// Get first 10 Place
const Place = await prisma.place.findMany({ take: 10 })
| Name | Type | Required |
|---|---|---|
| where | PlaceWhereInput | No |
| orderBy | PlaceOrderByWithRelationInput[] | PlaceOrderByWithRelationInput | No |
| cursor | PlaceWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | PlaceScalarFieldEnum | PlaceScalarFieldEnum[] | No |
Create one Place
// Create one Place
const Place = await prisma.place.create({
data: {
// ... data to create a Place
}
})
| Name | Type | Required |
|---|---|---|
| data | PlaceCreateInput | PlaceUncheckedCreateInput | No |
Delete one Place
// Delete one Place
const Place = await prisma.place.delete({
where: {
// ... filter to delete one Place
}
})
| Name | Type | Required |
|---|---|---|
| where | PlaceWhereUniqueInput | Yes |
Update one Place
// Update one Place
const place = await prisma.place.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | PlaceUpdateInput | PlaceUncheckedUpdateInput | Yes |
| where | PlaceWhereUniqueInput | Yes |
Delete zero or more Place
// Delete a few Place
const { count } = await prisma.place.deleteMany({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | PlaceWhereInput | No |
Update zero or one Place
const { count } = await prisma.place.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | PlaceUpdateManyMutationInput | PlaceUncheckedUpdateManyInput | Yes |
| where | PlaceWhereInput | No |
Create or update one Place
// Update or create a Place
const place = await prisma.place.upsert({
create: {
// ... data to create a Place
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the Place we want to update
}
})
| Name | Type | Required |
|---|---|---|
| where | PlaceWhereUniqueInput | Yes |
| create | PlaceCreateInput | PlaceUncheckedCreateInput | Yes |
| update | PlaceUpdateInput | PlaceUncheckedUpdateInput | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| name | SortOrder | No |
| isActive | SortOrder | No |
| isFinished | SortOrder | No |
| startDate | SortOrder | SortOrderInput | No |
| finishDate | SortOrder | SortOrderInput | No |
| matchDurationInMinutes | SortOrder | SortOrderInput | No |
| timeOfFirstMatch | SortOrder | SortOrderInput | No |
| timeOfLastMatch | SortOrder | SortOrderInput | No |
| eventType | SortOrder | No |
| matchType | SortOrder | No |
| isGroupMatchesFinished | SortOrder | No |
| _count | EventCountOrderByAggregateInput | No |
| _avg | EventAvgOrderByAggregateInput | No |
| _max | EventMaxOrderByAggregateInput | No |
| _min | EventMinOrderByAggregateInput | No |
| _sum | EventSumOrderByAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | EventScalarWhereWithAggregatesInput | EventScalarWhereWithAggregatesInput[] | No |
| OR | EventScalarWhereWithAggregatesInput[] | No |
| NOT | EventScalarWhereWithAggregatesInput | EventScalarWhereWithAggregatesInput[] | No |
| id | StringWithAggregatesFilter | String | No |
| name | StringWithAggregatesFilter | String | No |
| isActive | BoolWithAggregatesFilter | Boolean | No |
| isFinished | BoolWithAggregatesFilter | Boolean | No |
| startDate | DateTimeNullableWithAggregatesFilter | DateTime | Null | Yes |
| finishDate | DateTimeNullableWithAggregatesFilter | DateTime | Null | Yes |
| matchDurationInMinutes | IntNullableWithAggregatesFilter | Int | Null | Yes |
| timeOfFirstMatch | IntNullableWithAggregatesFilter | Int | Null | Yes |
| timeOfLastMatch | IntNullableWithAggregatesFilter | Int | Null | Yes |
| eventType | EnumEventTypeWithAggregatesFilter | EventType | No |
| matchType | EnumMatchTypeWithAggregatesFilter | MatchType | No |
| isGroupMatchesFinished | BoolWithAggregatesFilter | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| AND | CategoryGroupWhereInput | CategoryGroupWhereInput[] | No |
| OR | CategoryGroupWhereInput[] | No |
| NOT | CategoryGroupWhereInput | CategoryGroupWhereInput[] | No |
| id | StringFilter | String | No |
| categoryId | StringFilter | String | No |
| eventId | StringNullableFilter | String | Null | Yes |
| firstPlaceId | StringNullableFilter | String | Null | Yes |
| secondPlaceId | StringNullableFilter | String | Null | Yes |
| groupsStageFinished | BoolFilter | Boolean | No |
| categoryFinished | BoolFilter | Boolean | No |
| isFinalMatchesCreated | BoolFilter | Boolean | No |
| category | CategoryRelationFilter | CategoryWhereInput | No |
| groups | DoublesGroupListRelationFilter | No |
| event | EventNullableRelationFilter | EventWhereInput | Null | Yes |
| finalMatches | EventMatchListRelationFilter | No |
| matchesWithReference | MatchesReferencedListRelationFilter | No |
| firstPlace | DoubleNullableRelationFilter | DoubleWhereInput | Null | Yes |
| secondPlace | DoubleNullableRelationFilter | DoubleWhereInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| categoryId | SortOrder | No |
| eventId | SortOrder | SortOrderInput | No |
| firstPlaceId | SortOrder | SortOrderInput | No |
| secondPlaceId | SortOrder | SortOrderInput | No |
| groupsStageFinished | SortOrder | No |
| categoryFinished | SortOrder | No |
| isFinalMatchesCreated | SortOrder | No |
| category | CategoryOrderByWithRelationInput | No |
| groups | DoublesGroupOrderByRelationAggregateInput | No |
| event | EventOrderByWithRelationInput | No |
| finalMatches | EventMatchOrderByRelationAggregateInput | No |
| matchesWithReference | MatchesReferencedOrderByRelationAggregateInput | No |
| firstPlace | DoubleOrderByWithRelationInput | No |
| secondPlace | DoubleOrderByWithRelationInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| eventId_categoryId | CategoryGroupEventIdCategoryIdCompoundUniqueInput | No |
| AND | CategoryGroupWhereInput | CategoryGroupWhereInput[] | No |
| OR | CategoryGroupWhereInput[] | No |
| NOT | CategoryGroupWhereInput | CategoryGroupWhereInput[] | No |
| categoryId | StringFilter | String | No |
| eventId | StringNullableFilter | String | Null | Yes |
| firstPlaceId | StringNullableFilter | String | Null | Yes |
| secondPlaceId | StringNullableFilter | String | Null | Yes |
| groupsStageFinished | BoolFilter | Boolean | No |
| categoryFinished | BoolFilter | Boolean | No |
| isFinalMatchesCreated | BoolFilter | Boolean | No |
| category | CategoryRelationFilter | CategoryWhereInput | No |
| groups | DoublesGroupListRelationFilter | No |
| event | EventNullableRelationFilter | EventWhereInput | Null | Yes |
| finalMatches | EventMatchListRelationFilter | No |
| matchesWithReference | MatchesReferencedListRelationFilter | No |
| firstPlace | DoubleNullableRelationFilter | DoubleWhereInput | Null | Yes |
| secondPlace | DoubleNullableRelationFilter | DoubleWhereInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| categoryId | SortOrder | No |
| eventId | SortOrder | SortOrderInput | No |
| firstPlaceId | SortOrder | SortOrderInput | No |
| secondPlaceId | SortOrder | SortOrderInput | No |
| groupsStageFinished | SortOrder | No |
| categoryFinished | SortOrder | No |
| isFinalMatchesCreated | SortOrder | No |
| _count | CategoryGroupCountOrderByAggregateInput | No |
| _max | CategoryGroupMaxOrderByAggregateInput | No |
| _min | CategoryGroupMinOrderByAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | CategoryGroupScalarWhereWithAggregatesInput | CategoryGroupScalarWhereWithAggregatesInput[] | No |
| OR | CategoryGroupScalarWhereWithAggregatesInput[] | No |
| NOT | CategoryGroupScalarWhereWithAggregatesInput | CategoryGroupScalarWhereWithAggregatesInput[] | No |
| id | StringWithAggregatesFilter | String | No |
| categoryId | StringWithAggregatesFilter | String | No |
| eventId | StringNullableWithAggregatesFilter | String | Null | Yes |
| firstPlaceId | StringNullableWithAggregatesFilter | String | Null | Yes |
| secondPlaceId | StringNullableWithAggregatesFilter | String | Null | Yes |
| groupsStageFinished | BoolWithAggregatesFilter | Boolean | No |
| categoryFinished | BoolWithAggregatesFilter | Boolean | No |
| isFinalMatchesCreated | BoolWithAggregatesFilter | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| AND | DoublesGroupWhereInput | DoublesGroupWhereInput[] | No |
| OR | DoublesGroupWhereInput[] | No |
| NOT | DoublesGroupWhereInput | DoublesGroupWhereInput[] | No |
| id | StringFilter | String | No |
| key | StringFilter | String | No |
| categoryGroupId | StringNullableFilter | String | Null | Yes |
| firstPlaceDoublesId | StringNullableFilter | String | Null | Yes |
| secondPlaceDoublesId | StringNullableFilter | String | Null | Yes |
| groupFinished | BoolFilter | Boolean | No |
| eventDoubles | EventDoubleListRelationFilter | No |
| categoryGroup | CategoryGroupNullableRelationFilter | CategoryGroupWhereInput | Null | Yes |
| firstPlace | DoubleNullableRelationFilter | DoubleWhereInput | Null | Yes |
| secondPlace | DoubleNullableRelationFilter | DoubleWhereInput | Null | Yes |
| groupMatches | EventMatchListRelationFilter | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| key | SortOrder | No |
| categoryGroupId | SortOrder | SortOrderInput | No |
| firstPlaceDoublesId | SortOrder | SortOrderInput | No |
| secondPlaceDoublesId | SortOrder | SortOrderInput | No |
| groupFinished | SortOrder | No |
| eventDoubles | EventDoubleOrderByRelationAggregateInput | No |
| categoryGroup | CategoryGroupOrderByWithRelationInput | No |
| firstPlace | DoubleOrderByWithRelationInput | No |
| secondPlace | DoubleOrderByWithRelationInput | No |
| groupMatches | EventMatchOrderByRelationAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| categoryGroupId_key | DoublesGroupCategoryGroupIdKeyCompoundUniqueInput | No |
| AND | DoublesGroupWhereInput | DoublesGroupWhereInput[] | No |
| OR | DoublesGroupWhereInput[] | No |
| NOT | DoublesGroupWhereInput | DoublesGroupWhereInput[] | No |
| key | StringFilter | String | No |
| categoryGroupId | StringNullableFilter | String | Null | Yes |
| firstPlaceDoublesId | StringNullableFilter | String | Null | Yes |
| secondPlaceDoublesId | StringNullableFilter | String | Null | Yes |
| groupFinished | BoolFilter | Boolean | No |
| eventDoubles | EventDoubleListRelationFilter | No |
| categoryGroup | CategoryGroupNullableRelationFilter | CategoryGroupWhereInput | Null | Yes |
| firstPlace | DoubleNullableRelationFilter | DoubleWhereInput | Null | Yes |
| secondPlace | DoubleNullableRelationFilter | DoubleWhereInput | Null | Yes |
| groupMatches | EventMatchListRelationFilter | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| key | SortOrder | No |
| categoryGroupId | SortOrder | SortOrderInput | No |
| firstPlaceDoublesId | SortOrder | SortOrderInput | No |
| secondPlaceDoublesId | SortOrder | SortOrderInput | No |
| groupFinished | SortOrder | No |
| _count | DoublesGroupCountOrderByAggregateInput | No |
| _max | DoublesGroupMaxOrderByAggregateInput | No |
| _min | DoublesGroupMinOrderByAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | DoublesGroupScalarWhereWithAggregatesInput | DoublesGroupScalarWhereWithAggregatesInput[] | No |
| OR | DoublesGroupScalarWhereWithAggregatesInput[] | No |
| NOT | DoublesGroupScalarWhereWithAggregatesInput | DoublesGroupScalarWhereWithAggregatesInput[] | No |
| id | StringWithAggregatesFilter | String | No |
| key | StringWithAggregatesFilter | String | No |
| categoryGroupId | StringNullableWithAggregatesFilter | String | Null | Yes |
| firstPlaceDoublesId | StringNullableWithAggregatesFilter | String | Null | Yes |
| secondPlaceDoublesId | StringNullableWithAggregatesFilter | String | Null | Yes |
| groupFinished | BoolWithAggregatesFilter | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| AND | EventRequestWhereInput | EventRequestWhereInput[] | No |
| OR | EventRequestWhereInput[] | No |
| NOT | EventRequestWhereInput | EventRequestWhereInput[] | No |
| eventId | StringFilter | String | No |
| doubleId | StringFilter | String | No |
| categoryId | StringFilter | String | No |
| status | EnumRequestStatusFilter | RequestStatus | No |
| event | EventRelationFilter | EventWhereInput | No |
| double | DoubleRelationFilter | DoubleWhereInput | No |
| category | CategoryRelationFilter | CategoryWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| eventId | SortOrder | No |
| doubleId | SortOrder | No |
| categoryId | SortOrder | No |
| status | SortOrder | No |
| event | EventOrderByWithRelationInput | No |
| double | DoubleOrderByWithRelationInput | No |
| category | CategoryOrderByWithRelationInput | No |
| Name | Type | Nullable |
|---|---|---|
| eventId_doubleId_categoryId | EventRequestEventIdDoubleIdCategoryIdCompoundUniqueInput | No |
| AND | EventRequestWhereInput | EventRequestWhereInput[] | No |
| OR | EventRequestWhereInput[] | No |
| NOT | EventRequestWhereInput | EventRequestWhereInput[] | No |
| eventId | StringFilter | String | No |
| doubleId | StringFilter | String | No |
| categoryId | StringFilter | String | No |
| status | EnumRequestStatusFilter | RequestStatus | No |
| event | EventRelationFilter | EventWhereInput | No |
| double | DoubleRelationFilter | DoubleWhereInput | No |
| category | CategoryRelationFilter | CategoryWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| eventId | SortOrder | No |
| doubleId | SortOrder | No |
| categoryId | SortOrder | No |
| status | SortOrder | No |
| _count | EventRequestCountOrderByAggregateInput | No |
| _max | EventRequestMaxOrderByAggregateInput | No |
| _min | EventRequestMinOrderByAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | EventRequestScalarWhereWithAggregatesInput | EventRequestScalarWhereWithAggregatesInput[] | No |
| OR | EventRequestScalarWhereWithAggregatesInput[] | No |
| NOT | EventRequestScalarWhereWithAggregatesInput | EventRequestScalarWhereWithAggregatesInput[] | No |
| eventId | StringWithAggregatesFilter | String | No |
| doubleId | StringWithAggregatesFilter | String | No |
| categoryId | StringWithAggregatesFilter | String | No |
| status | EnumRequestStatusWithAggregatesFilter | RequestStatus | No |
| Name | Type | Nullable |
|---|---|---|
| AND | CourtWhereInput | CourtWhereInput[] | No |
| OR | CourtWhereInput[] | No |
| NOT | CourtWhereInput | CourtWhereInput[] | No |
| id | StringFilter | String | No |
| name | StringFilter | String | No |
| isAvailable | BoolFilter | Boolean | No |
| placeId | StringFilter | String | No |
| events | EventListRelationFilter | No |
| matches | MatchListRelationFilter | No |
| place | PlaceRelationFilter | PlaceWhereInput | No |
| matchDates | MatchDateListRelationFilter | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| name | SortOrder | No |
| isAvailable | SortOrder | No |
| placeId | SortOrder | No |
| events | EventOrderByRelationAggregateInput | No |
| matches | MatchOrderByRelationAggregateInput | No |
| place | PlaceOrderByWithRelationInput | No |
| matchDates | MatchDateOrderByRelationAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| name_placeId | CourtNamePlaceIdCompoundUniqueInput | No |
| AND | CourtWhereInput | CourtWhereInput[] | No |
| OR | CourtWhereInput[] | No |
| NOT | CourtWhereInput | CourtWhereInput[] | No |
| name | StringFilter | String | No |
| isAvailable | BoolFilter | Boolean | No |
| placeId | StringFilter | String | No |
| events | EventListRelationFilter | No |
| matches | MatchListRelationFilter | No |
| place | PlaceRelationFilter | PlaceWhereInput | No |
| matchDates | MatchDateListRelationFilter | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| name | SortOrder | No |
| isAvailable | SortOrder | No |
| placeId | SortOrder | No |
| _count | CourtCountOrderByAggregateInput | No |
| _max | CourtMaxOrderByAggregateInput | No |
| _min | CourtMinOrderByAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | CourtScalarWhereWithAggregatesInput | CourtScalarWhereWithAggregatesInput[] | No |
| OR | CourtScalarWhereWithAggregatesInput[] | No |
| NOT | CourtScalarWhereWithAggregatesInput | CourtScalarWhereWithAggregatesInput[] | No |
| id | StringWithAggregatesFilter | String | No |
| name | StringWithAggregatesFilter | String | No |
| isAvailable | BoolWithAggregatesFilter | Boolean | No |
| placeId | StringWithAggregatesFilter | String | No |
| Name | Type | Nullable |
|---|---|---|
| AND | EventDoubleWhereInput | EventDoubleWhereInput[] | No |
| OR | EventDoubleWhereInput[] | No |
| NOT | EventDoubleWhereInput | EventDoubleWhereInput[] | No |
| eventId | StringFilter | String | No |
| doubleId | StringFilter | String | No |
| categoryId | StringFilter | String | No |
| atRestId | StringNullableFilter | String | Null | Yes |
| doublesGroupId | StringNullableFilter | String | Null | Yes |
| event | EventRelationFilter | EventWhereInput | No |
| double | DoubleRelationFilter | DoubleWhereInput | No |
| category | CategoryRelationFilter | CategoryWhereInput | No |
| atRest | MatchDateNullableRelationFilter | MatchDateWhereInput | Null | Yes |
| DoublesGroup | DoublesGroupNullableRelationFilter | DoublesGroupWhereInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| eventId | SortOrder | No |
| doubleId | SortOrder | No |
| categoryId | SortOrder | No |
| atRestId | SortOrder | SortOrderInput | No |
| doublesGroupId | SortOrder | SortOrderInput | No |
| event | EventOrderByWithRelationInput | No |
| double | DoubleOrderByWithRelationInput | No |
| category | CategoryOrderByWithRelationInput | No |
| atRest | MatchDateOrderByWithRelationInput | No |
| DoublesGroup | DoublesGroupOrderByWithRelationInput | No |
| Name | Type | Nullable |
|---|---|---|
| eventId_doubleId_categoryId | EventDoubleEventIdDoubleIdCategoryIdCompoundUniqueInput | No |
| AND | EventDoubleWhereInput | EventDoubleWhereInput[] | No |
| OR | EventDoubleWhereInput[] | No |
| NOT | EventDoubleWhereInput | EventDoubleWhereInput[] | No |
| eventId | StringFilter | String | No |
| doubleId | StringFilter | String | No |
| categoryId | StringFilter | String | No |
| atRestId | StringNullableFilter | String | Null | Yes |
| doublesGroupId | StringNullableFilter | String | Null | Yes |
| event | EventRelationFilter | EventWhereInput | No |
| double | DoubleRelationFilter | DoubleWhereInput | No |
| category | CategoryRelationFilter | CategoryWhereInput | No |
| atRest | MatchDateNullableRelationFilter | MatchDateWhereInput | Null | Yes |
| DoublesGroup | DoublesGroupNullableRelationFilter | DoublesGroupWhereInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| eventId | SortOrder | No |
| doubleId | SortOrder | No |
| categoryId | SortOrder | No |
| atRestId | SortOrder | SortOrderInput | No |
| doublesGroupId | SortOrder | SortOrderInput | No |
| _count | EventDoubleCountOrderByAggregateInput | No |
| _max | EventDoubleMaxOrderByAggregateInput | No |
| _min | EventDoubleMinOrderByAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | EventDoubleScalarWhereWithAggregatesInput | EventDoubleScalarWhereWithAggregatesInput[] | No |
| OR | EventDoubleScalarWhereWithAggregatesInput[] | No |
| NOT | EventDoubleScalarWhereWithAggregatesInput | EventDoubleScalarWhereWithAggregatesInput[] | No |
| eventId | StringWithAggregatesFilter | String | No |
| doubleId | StringWithAggregatesFilter | String | No |
| categoryId | StringWithAggregatesFilter | String | No |
| atRestId | StringNullableWithAggregatesFilter | String | Null | Yes |
| doublesGroupId | StringNullableWithAggregatesFilter | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| AND | CategoryWhereInput | CategoryWhereInput[] | No |
| OR | CategoryWhereInput[] | No |
| NOT | CategoryWhereInput | CategoryWhereInput[] | No |
| id | StringFilter | String | No |
| level | IntFilter | Int | No |
| type | EnumCatTypeFilter | CatType | No |
| players | PlayerListRelationFilter | No |
| doubles | DoubleListRelationFilter | No |
| events | EventListRelationFilter | No |
| matches | MatchListRelationFilter | No |
| eventDoubles | EventDoubleListRelationFilter | No |
| eventRequests | EventRequestListRelationFilter | No |
| categoryGroup | CategoryGroupListRelationFilter | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| level | SortOrder | No |
| type | SortOrder | No |
| players | PlayerOrderByRelationAggregateInput | No |
| doubles | DoubleOrderByRelationAggregateInput | No |
| events | EventOrderByRelationAggregateInput | No |
| matches | MatchOrderByRelationAggregateInput | No |
| eventDoubles | EventDoubleOrderByRelationAggregateInput | No |
| eventRequests | EventRequestOrderByRelationAggregateInput | No |
| categoryGroup | CategoryGroupOrderByRelationAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| CategoryId | CategoryCategoryIdCompoundUniqueInput | No |
| AND | CategoryWhereInput | CategoryWhereInput[] | No |
| OR | CategoryWhereInput[] | No |
| NOT | CategoryWhereInput | CategoryWhereInput[] | No |
| level | IntFilter | Int | No |
| type | EnumCatTypeFilter | CatType | No |
| players | PlayerListRelationFilter | No |
| doubles | DoubleListRelationFilter | No |
| events | EventListRelationFilter | No |
| matches | MatchListRelationFilter | No |
| eventDoubles | EventDoubleListRelationFilter | No |
| eventRequests | EventRequestListRelationFilter | No |
| categoryGroup | CategoryGroupListRelationFilter | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| level | SortOrder | No |
| type | SortOrder | No |
| _count | CategoryCountOrderByAggregateInput | No |
| _avg | CategoryAvgOrderByAggregateInput | No |
| _max | CategoryMaxOrderByAggregateInput | No |
| _min | CategoryMinOrderByAggregateInput | No |
| _sum | CategorySumOrderByAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | CategoryScalarWhereWithAggregatesInput | CategoryScalarWhereWithAggregatesInput[] | No |
| OR | CategoryScalarWhereWithAggregatesInput[] | No |
| NOT | CategoryScalarWhereWithAggregatesInput | CategoryScalarWhereWithAggregatesInput[] | No |
| id | StringWithAggregatesFilter | String | No |
| level | IntWithAggregatesFilter | Int | No |
| type | EnumCatTypeWithAggregatesFilter | CatType | No |
| Name | Type | Nullable |
|---|---|---|
| AND | EventMatchWhereInput | EventMatchWhereInput[] | No |
| OR | EventMatchWhereInput[] | No |
| NOT | EventMatchWhereInput | EventMatchWhereInput[] | No |
| number | IntFilter | Int | No |
| type | EnumEventMatchTypeFilter | EventMatchType | No |
| eventId | StringFilter | String | No |
| matchId | StringFilter | String | No |
| categoryGroupId | StringNullableFilter | String | Null | Yes |
| doublesGroupId | StringNullableFilter | String | Null | Yes |
| event | EventRelationFilter | EventWhereInput | No |
| match | MatchRelationFilter | MatchWhereInput | No |
| categoryGroup | CategoryGroupNullableRelationFilter | CategoryGroupWhereInput | Null | Yes |
| doublesGroup | DoublesGroupNullableRelationFilter | DoublesGroupWhereInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| number | SortOrder | No |
| type | SortOrder | No |
| eventId | SortOrder | No |
| matchId | SortOrder | No |
| categoryGroupId | SortOrder | SortOrderInput | No |
| doublesGroupId | SortOrder | SortOrderInput | No |
| event | EventOrderByWithRelationInput | No |
| match | MatchOrderByWithRelationInput | No |
| categoryGroup | CategoryGroupOrderByWithRelationInput | No |
| doublesGroup | DoublesGroupOrderByWithRelationInput | No |
| Name | Type | Nullable |
|---|---|---|
| matchId | String | No |
| eventId_matchId | EventMatchEventIdMatchIdCompoundUniqueInput | No |
| AND | EventMatchWhereInput | EventMatchWhereInput[] | No |
| OR | EventMatchWhereInput[] | No |
| NOT | EventMatchWhereInput | EventMatchWhereInput[] | No |
| number | IntFilter | Int | No |
| type | EnumEventMatchTypeFilter | EventMatchType | No |
| eventId | StringFilter | String | No |
| categoryGroupId | StringNullableFilter | String | Null | Yes |
| doublesGroupId | StringNullableFilter | String | Null | Yes |
| event | EventRelationFilter | EventWhereInput | No |
| match | MatchRelationFilter | MatchWhereInput | No |
| categoryGroup | CategoryGroupNullableRelationFilter | CategoryGroupWhereInput | Null | Yes |
| doublesGroup | DoublesGroupNullableRelationFilter | DoublesGroupWhereInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| number | SortOrder | No |
| type | SortOrder | No |
| eventId | SortOrder | No |
| matchId | SortOrder | No |
| categoryGroupId | SortOrder | SortOrderInput | No |
| doublesGroupId | SortOrder | SortOrderInput | No |
| _count | EventMatchCountOrderByAggregateInput | No |
| _avg | EventMatchAvgOrderByAggregateInput | No |
| _max | EventMatchMaxOrderByAggregateInput | No |
| _min | EventMatchMinOrderByAggregateInput | No |
| _sum | EventMatchSumOrderByAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | EventMatchScalarWhereWithAggregatesInput | EventMatchScalarWhereWithAggregatesInput[] | No |
| OR | EventMatchScalarWhereWithAggregatesInput[] | No |
| NOT | EventMatchScalarWhereWithAggregatesInput | EventMatchScalarWhereWithAggregatesInput[] | No |
| number | IntWithAggregatesFilter | Int | No |
| type | EnumEventMatchTypeWithAggregatesFilter | EventMatchType | No |
| eventId | StringWithAggregatesFilter | String | No |
| matchId | StringWithAggregatesFilter | String | No |
| categoryGroupId | StringNullableWithAggregatesFilter | String | Null | Yes |
| doublesGroupId | StringNullableWithAggregatesFilter | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| AND | MatchesReferencedWhereInput | MatchesReferencedWhereInput[] | No |
| OR | MatchesReferencedWhereInput[] | No |
| NOT | MatchesReferencedWhereInput | MatchesReferencedWhereInput[] | No |
| matchAId | StringFilter | String | No |
| matchBId | StringNullableFilter | String | Null | Yes |
| refMatchId | StringNullableFilter | String | Null | Yes |
| categoryGroupId | StringNullableFilter | String | Null | Yes |
| isUpdated | BoolFilter | Boolean | No |
| matchA | MatchNullableRelationFilter | MatchWhereInput | Null | Yes |
| matchB | MatchNullableRelationFilter | MatchWhereInput | Null | Yes |
| refMatch | MatchNullableRelationFilter | MatchWhereInput | Null | Yes |
| categoryGroup | CategoryGroupNullableRelationFilter | CategoryGroupWhereInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| matchAId | SortOrder | No |
| matchBId | SortOrder | SortOrderInput | No |
| refMatchId | SortOrder | SortOrderInput | No |
| categoryGroupId | SortOrder | SortOrderInput | No |
| isUpdated | SortOrder | No |
| matchA | MatchOrderByWithRelationInput | No |
| matchB | MatchOrderByWithRelationInput | No |
| refMatch | MatchOrderByWithRelationInput | No |
| categoryGroup | CategoryGroupOrderByWithRelationInput | No |
| Name | Type | Nullable |
|---|---|---|
| matchAId | String | No |
| matchBId | String | No |
| refMatchId | String | No |
| matchAId_matchBId_refMatchId | MatchesReferencedMatchAIdMatchBIdRefMatchIdCompoundUniqueInput | No |
| AND | MatchesReferencedWhereInput | MatchesReferencedWhereInput[] | No |
| OR | MatchesReferencedWhereInput[] | No |
| NOT | MatchesReferencedWhereInput | MatchesReferencedWhereInput[] | No |
| categoryGroupId | StringNullableFilter | String | Null | Yes |
| isUpdated | BoolFilter | Boolean | No |
| matchA | MatchNullableRelationFilter | MatchWhereInput | Null | Yes |
| matchB | MatchNullableRelationFilter | MatchWhereInput | Null | Yes |
| refMatch | MatchNullableRelationFilter | MatchWhereInput | Null | Yes |
| categoryGroup | CategoryGroupNullableRelationFilter | CategoryGroupWhereInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| matchAId | SortOrder | No |
| matchBId | SortOrder | SortOrderInput | No |
| refMatchId | SortOrder | SortOrderInput | No |
| categoryGroupId | SortOrder | SortOrderInput | No |
| isUpdated | SortOrder | No |
| _count | MatchesReferencedCountOrderByAggregateInput | No |
| _max | MatchesReferencedMaxOrderByAggregateInput | No |
| _min | MatchesReferencedMinOrderByAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | MatchesReferencedScalarWhereWithAggregatesInput | MatchesReferencedScalarWhereWithAggregatesInput[] | No |
| OR | MatchesReferencedScalarWhereWithAggregatesInput[] | No |
| NOT | MatchesReferencedScalarWhereWithAggregatesInput | MatchesReferencedScalarWhereWithAggregatesInput[] | No |
| matchAId | StringWithAggregatesFilter | String | No |
| matchBId | StringNullableWithAggregatesFilter | String | Null | Yes |
| refMatchId | StringNullableWithAggregatesFilter | String | Null | Yes |
| categoryGroupId | StringNullableWithAggregatesFilter | String | Null | Yes |
| isUpdated | BoolWithAggregatesFilter | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| isFinished | SortOrder | No |
| categoryId | SortOrder | SortOrderInput | No |
| winnerDoublesId | SortOrder | SortOrderInput | No |
| eventId | SortOrder | SortOrderInput | No |
| type | SortOrder | No |
| courtId | SortOrder | SortOrderInput | No |
| players | PlayerOrderByRelationAggregateInput | No |
| category | CategoryOrderByWithRelationInput | No |
| winner | DoubleOrderByWithRelationInput | No |
| sets | SetOrderByRelationAggregateInput | No |
| doubles | DoubleOrderByRelationAggregateInput | No |
| event | EventOrderByWithRelationInput | No |
| matchDate | MatchDateOrderByWithRelationInput | No |
| court | CourtOrderByWithRelationInput | No |
| invite | InviteOrderByWithRelationInput | No |
| eventMatch | EventMatchOrderByWithRelationInput | No |
| matchRefA | MatchesReferencedOrderByWithRelationInput | No |
| matchRefB | MatchesReferencedOrderByWithRelationInput | No |
| matchRef | MatchesReferencedOrderByWithRelationInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| isFinished | SortOrder | No |
| categoryId | SortOrder | SortOrderInput | No |
| winnerDoublesId | SortOrder | SortOrderInput | No |
| eventId | SortOrder | SortOrderInput | No |
| type | SortOrder | No |
| courtId | SortOrder | SortOrderInput | No |
| _count | MatchCountOrderByAggregateInput | No |
| _max | MatchMaxOrderByAggregateInput | No |
| _min | MatchMinOrderByAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | MatchScalarWhereWithAggregatesInput | MatchScalarWhereWithAggregatesInput[] | No |
| OR | MatchScalarWhereWithAggregatesInput[] | No |
| NOT | MatchScalarWhereWithAggregatesInput | MatchScalarWhereWithAggregatesInput[] | No |
| id | StringWithAggregatesFilter | String | No |
| isFinished | BoolWithAggregatesFilter | Boolean | No |
| categoryId | StringNullableWithAggregatesFilter | String | Null | Yes |
| winnerDoublesId | StringNullableWithAggregatesFilter | String | Null | Yes |
| eventId | StringNullableWithAggregatesFilter | String | Null | Yes |
| type | EnumMatchTypeWithAggregatesFilter | MatchType | No |
| courtId | StringNullableWithAggregatesFilter | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| AND | MatchDateWhereInput | MatchDateWhereInput[] | No |
| OR | MatchDateWhereInput[] | No |
| NOT | MatchDateWhereInput | MatchDateWhereInput[] | No |
| id | StringFilter | String | No |
| eventId | StringFilter | String | No |
| matchId | StringNullableFilter | String | Null | Yes |
| start | DateTimeFilter | DateTime | No |
| finish | DateTimeFilter | DateTime | No |
| courtId | StringFilter | String | No |
| event | EventRelationFilter | EventWhereInput | No |
| match | MatchNullableRelationFilter | MatchWhereInput | Null | Yes |
| court | CourtRelationFilter | CourtWhereInput | No |
| atRest | EventDoubleListRelationFilter | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| eventId | SortOrder | No |
| matchId | SortOrder | SortOrderInput | No |
| start | SortOrder | No |
| finish | SortOrder | No |
| courtId | SortOrder | No |
| event | EventOrderByWithRelationInput | No |
| match | MatchOrderByWithRelationInput | No |
| court | CourtOrderByWithRelationInput | No |
| atRest | EventDoubleOrderByRelationAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| matchId | String | No |
| eventId_start_finish_courtId | MatchDateEventIdStartFinishCourtIdCompoundUniqueInput | No |
| AND | MatchDateWhereInput | MatchDateWhereInput[] | No |
| OR | MatchDateWhereInput[] | No |
| NOT | MatchDateWhereInput | MatchDateWhereInput[] | No |
| eventId | StringFilter | String | No |
| start | DateTimeFilter | DateTime | No |
| finish | DateTimeFilter | DateTime | No |
| courtId | StringFilter | String | No |
| event | EventRelationFilter | EventWhereInput | No |
| match | MatchNullableRelationFilter | MatchWhereInput | Null | Yes |
| court | CourtRelationFilter | CourtWhereInput | No |
| atRest | EventDoubleListRelationFilter | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| eventId | SortOrder | No |
| matchId | SortOrder | SortOrderInput | No |
| start | SortOrder | No |
| finish | SortOrder | No |
| courtId | SortOrder | No |
| _count | MatchDateCountOrderByAggregateInput | No |
| _max | MatchDateMaxOrderByAggregateInput | No |
| _min | MatchDateMinOrderByAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | MatchDateScalarWhereWithAggregatesInput | MatchDateScalarWhereWithAggregatesInput[] | No |
| OR | MatchDateScalarWhereWithAggregatesInput[] | No |
| NOT | MatchDateScalarWhereWithAggregatesInput | MatchDateScalarWhereWithAggregatesInput[] | No |
| id | StringWithAggregatesFilter | String | No |
| eventId | StringWithAggregatesFilter | String | No |
| matchId | StringNullableWithAggregatesFilter | String | Null | Yes |
| start | DateTimeWithAggregatesFilter | DateTime | No |
| finish | DateTimeWithAggregatesFilter | DateTime | No |
| courtId | StringWithAggregatesFilter | String | No |
| Name | Type | Nullable |
|---|---|---|
| AND | SetWhereInput | SetWhereInput[] | No |
| OR | SetWhereInput[] | No |
| NOT | SetWhereInput | SetWhereInput[] | No |
| id | StringFilter | String | No |
| type | EnumSetTypeFilter | SetType | No |
| number | IntFilter | Int | No |
| setWinnerId | StringNullableFilter | String | Null | Yes |
| result | StringNullableFilter | String | Null | Yes |
| matchId | StringFilter | String | No |
| isFinished | BoolFilter | Boolean | No |
| doubles | DoubleListRelationFilter | No |
| winner | DoubleNullableRelationFilter | DoubleWhereInput | Null | Yes |
| match | MatchRelationFilter | MatchWhereInput | No |
| games | GameListRelationFilter | No |
| events | EventListRelationFilter | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| type | SortOrder | No |
| number | SortOrder | No |
| setWinnerId | SortOrder | SortOrderInput | No |
| result | SortOrder | SortOrderInput | No |
| matchId | SortOrder | No |
| isFinished | SortOrder | No |
| doubles | DoubleOrderByRelationAggregateInput | No |
| winner | DoubleOrderByWithRelationInput | No |
| match | MatchOrderByWithRelationInput | No |
| games | GameOrderByRelationAggregateInput | No |
| events | EventOrderByRelationAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| AND | SetWhereInput | SetWhereInput[] | No |
| OR | SetWhereInput[] | No |
| NOT | SetWhereInput | SetWhereInput[] | No |
| type | EnumSetTypeFilter | SetType | No |
| number | IntFilter | Int | No |
| setWinnerId | StringNullableFilter | String | Null | Yes |
| result | StringNullableFilter | String | Null | Yes |
| matchId | StringFilter | String | No |
| isFinished | BoolFilter | Boolean | No |
| doubles | DoubleListRelationFilter | No |
| winner | DoubleNullableRelationFilter | DoubleWhereInput | Null | Yes |
| match | MatchRelationFilter | MatchWhereInput | No |
| games | GameListRelationFilter | No |
| events | EventListRelationFilter | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| type | SortOrder | No |
| number | SortOrder | No |
| setWinnerId | SortOrder | SortOrderInput | No |
| result | SortOrder | SortOrderInput | No |
| matchId | SortOrder | No |
| isFinished | SortOrder | No |
| _count | SetCountOrderByAggregateInput | No |
| _avg | SetAvgOrderByAggregateInput | No |
| _max | SetMaxOrderByAggregateInput | No |
| _min | SetMinOrderByAggregateInput | No |
| _sum | SetSumOrderByAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | SetScalarWhereWithAggregatesInput | SetScalarWhereWithAggregatesInput[] | No |
| OR | SetScalarWhereWithAggregatesInput[] | No |
| NOT | SetScalarWhereWithAggregatesInput | SetScalarWhereWithAggregatesInput[] | No |
| id | StringWithAggregatesFilter | String | No |
| type | EnumSetTypeWithAggregatesFilter | SetType | No |
| number | IntWithAggregatesFilter | Int | No |
| setWinnerId | StringNullableWithAggregatesFilter | String | Null | Yes |
| result | StringNullableWithAggregatesFilter | String | Null | Yes |
| matchId | StringWithAggregatesFilter | String | No |
| isFinished | BoolWithAggregatesFilter | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| AND | GameWhereInput | GameWhereInput[] | No |
| OR | GameWhereInput[] | No |
| NOT | GameWhereInput | GameWhereInput[] | No |
| id | StringFilter | String | No |
| setId | StringFilter | String | No |
| winnerId | StringNullableFilter | String | Null | Yes |
| set | SetRelationFilter | SetWhereInput | No |
| doubles | DoubleListRelationFilter | No |
| winner | DoubleNullableRelationFilter | DoubleWhereInput | Null | Yes |
| events | EventListRelationFilter | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| setId | SortOrder | No |
| winnerId | SortOrder | SortOrderInput | No |
| set | SetOrderByWithRelationInput | No |
| doubles | DoubleOrderByRelationAggregateInput | No |
| winner | DoubleOrderByWithRelationInput | No |
| events | EventOrderByRelationAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| AND | GameWhereInput | GameWhereInput[] | No |
| OR | GameWhereInput[] | No |
| NOT | GameWhereInput | GameWhereInput[] | No |
| setId | StringFilter | String | No |
| winnerId | StringNullableFilter | String | Null | Yes |
| set | SetRelationFilter | SetWhereInput | No |
| doubles | DoubleListRelationFilter | No |
| winner | DoubleNullableRelationFilter | DoubleWhereInput | Null | Yes |
| events | EventListRelationFilter | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| setId | SortOrder | No |
| winnerId | SortOrder | SortOrderInput | No |
| _count | GameCountOrderByAggregateInput | No |
| _max | GameMaxOrderByAggregateInput | No |
| _min | GameMinOrderByAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | GameScalarWhereWithAggregatesInput | GameScalarWhereWithAggregatesInput[] | No |
| OR | GameScalarWhereWithAggregatesInput[] | No |
| NOT | GameScalarWhereWithAggregatesInput | GameScalarWhereWithAggregatesInput[] | No |
| id | StringWithAggregatesFilter | String | No |
| setId | StringWithAggregatesFilter | String | No |
| winnerId | StringNullableWithAggregatesFilter | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| AND | UserWhereInput | UserWhereInput[] | No |
| OR | UserWhereInput[] | No |
| NOT | UserWhereInput | UserWhereInput[] | No |
| id | StringFilter | String | No |
| firstName | StringNullableFilter | String | Null | Yes |
| lastName | StringNullableFilter | String | Null | Yes |
| StringFilter | String | No | |
| password | StringFilter | String | No |
| dob | DateTimeNullableFilter | DateTime | Null | Yes |
| createdAt | DateTimeFilter | DateTime | No |
| updatedAt | DateTimeFilter | DateTime | No |
| playerId | StringNullableFilter | String | Null | Yes |
| role | EnumRoleFilter | Role | No |
| hashedRt | StringNullableFilter | String | Null | Yes |
| profileImage | StringNullableFilter | String | Null | Yes |
| player | PlayerNullableRelationFilter | PlayerWhereInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| firstName | SortOrder | SortOrderInput | No |
| lastName | SortOrder | SortOrderInput | No |
| SortOrder | No | |
| password | SortOrder | No |
| dob | SortOrder | SortOrderInput | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| playerId | SortOrder | SortOrderInput | No |
| role | SortOrder | No |
| hashedRt | SortOrder | SortOrderInput | No |
| profileImage | SortOrder | SortOrderInput | No |
| player | PlayerOrderByWithRelationInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| String | No | |
| playerId | String | No |
| AND | UserWhereInput | UserWhereInput[] | No |
| OR | UserWhereInput[] | No |
| NOT | UserWhereInput | UserWhereInput[] | No |
| firstName | StringNullableFilter | String | Null | Yes |
| lastName | StringNullableFilter | String | Null | Yes |
| password | StringFilter | String | No |
| dob | DateTimeNullableFilter | DateTime | Null | Yes |
| createdAt | DateTimeFilter | DateTime | No |
| updatedAt | DateTimeFilter | DateTime | No |
| role | EnumRoleFilter | Role | No |
| hashedRt | StringNullableFilter | String | Null | Yes |
| profileImage | StringNullableFilter | String | Null | Yes |
| player | PlayerNullableRelationFilter | PlayerWhereInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| firstName | SortOrder | SortOrderInput | No |
| lastName | SortOrder | SortOrderInput | No |
| SortOrder | No | |
| password | SortOrder | No |
| dob | SortOrder | SortOrderInput | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| playerId | SortOrder | SortOrderInput | No |
| role | SortOrder | No |
| hashedRt | SortOrder | SortOrderInput | No |
| profileImage | SortOrder | SortOrderInput | No |
| _count | UserCountOrderByAggregateInput | No |
| _max | UserMaxOrderByAggregateInput | No |
| _min | UserMinOrderByAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | UserScalarWhereWithAggregatesInput | UserScalarWhereWithAggregatesInput[] | No |
| OR | UserScalarWhereWithAggregatesInput[] | No |
| NOT | UserScalarWhereWithAggregatesInput | UserScalarWhereWithAggregatesInput[] | No |
| id | StringWithAggregatesFilter | String | No |
| firstName | StringNullableWithAggregatesFilter | String | Null | Yes |
| lastName | StringNullableWithAggregatesFilter | String | Null | Yes |
| StringWithAggregatesFilter | String | No | |
| password | StringWithAggregatesFilter | String | No |
| dob | DateTimeNullableWithAggregatesFilter | DateTime | Null | Yes |
| createdAt | DateTimeWithAggregatesFilter | DateTime | No |
| updatedAt | DateTimeWithAggregatesFilter | DateTime | No |
| playerId | StringNullableWithAggregatesFilter | String | Null | Yes |
| role | EnumRoleWithAggregatesFilter | Role | No |
| hashedRt | StringNullableWithAggregatesFilter | String | Null | Yes |
| profileImage | StringNullableWithAggregatesFilter | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| AND | InviteWhereInput | InviteWhereInput[] | No |
| OR | InviteWhereInput[] | No |
| NOT | InviteWhereInput | InviteWhereInput[] | No |
| id | StringFilter | String | No |
| inviteType | EnumInviteTypeFilter | InviteType | No |
| doublesId | StringNullableFilter | String | Null | Yes |
| eventId | StringNullableFilter | String | Null | Yes |
| matchId | StringNullableFilter | String | Null | Yes |
| inviterId | StringFilter | String | No |
| invitedId | StringFilter | String | No |
| createdAt | DateTimeFilter | DateTime | No |
| players | PlayerListRelationFilter | No |
| double | DoubleNullableRelationFilter | DoubleWhereInput | Null | Yes |
| event | EventNullableRelationFilter | EventWhereInput | Null | Yes |
| match | MatchNullableRelationFilter | MatchWhereInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| inviteType | SortOrder | No |
| doublesId | SortOrder | SortOrderInput | No |
| eventId | SortOrder | SortOrderInput | No |
| matchId | SortOrder | SortOrderInput | No |
| inviterId | SortOrder | No |
| invitedId | SortOrder | No |
| createdAt | SortOrder | No |
| players | PlayerOrderByRelationAggregateInput | No |
| double | DoubleOrderByWithRelationInput | No |
| event | EventOrderByWithRelationInput | No |
| match | MatchOrderByWithRelationInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| eventId | String | No |
| matchId | String | No |
| inviterId_invitedId_inviteType | InviteInviterIdInvitedIdInviteTypeCompoundUniqueInput | No |
| AND | InviteWhereInput | InviteWhereInput[] | No |
| OR | InviteWhereInput[] | No |
| NOT | InviteWhereInput | InviteWhereInput[] | No |
| inviteType | EnumInviteTypeFilter | InviteType | No |
| doublesId | StringNullableFilter | String | Null | Yes |
| inviterId | StringFilter | String | No |
| invitedId | StringFilter | String | No |
| createdAt | DateTimeFilter | DateTime | No |
| players | PlayerListRelationFilter | No |
| double | DoubleNullableRelationFilter | DoubleWhereInput | Null | Yes |
| event | EventNullableRelationFilter | EventWhereInput | Null | Yes |
| match | MatchNullableRelationFilter | MatchWhereInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| inviteType | SortOrder | No |
| doublesId | SortOrder | SortOrderInput | No |
| eventId | SortOrder | SortOrderInput | No |
| matchId | SortOrder | SortOrderInput | No |
| inviterId | SortOrder | No |
| invitedId | SortOrder | No |
| createdAt | SortOrder | No |
| _count | InviteCountOrderByAggregateInput | No |
| _max | InviteMaxOrderByAggregateInput | No |
| _min | InviteMinOrderByAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | InviteScalarWhereWithAggregatesInput | InviteScalarWhereWithAggregatesInput[] | No |
| OR | InviteScalarWhereWithAggregatesInput[] | No |
| NOT | InviteScalarWhereWithAggregatesInput | InviteScalarWhereWithAggregatesInput[] | No |
| id | StringWithAggregatesFilter | String | No |
| inviteType | EnumInviteTypeWithAggregatesFilter | InviteType | No |
| doublesId | StringNullableWithAggregatesFilter | String | Null | Yes |
| eventId | StringNullableWithAggregatesFilter | String | Null | Yes |
| matchId | StringNullableWithAggregatesFilter | String | Null | Yes |
| inviterId | StringWithAggregatesFilter | String | No |
| invitedId | StringWithAggregatesFilter | String | No |
| createdAt | DateTimeWithAggregatesFilter | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| AND | PlayerWhereInput | PlayerWhereInput[] | No |
| OR | PlayerWhereInput[] | No |
| NOT | PlayerWhereInput | PlayerWhereInput[] | No |
| id | StringFilter | String | No |
| firstName | StringNullableFilter | String | Null | Yes |
| lastName | StringNullableFilter | String | Null | Yes |
| categoryId | StringFilter | String | No |
| position | EnumPlayerPositionNullableFilter | PlayerPosition | Null | Yes |
| category | CategoryRelationFilter | CategoryWhereInput | No |
| matches | MatchListRelationFilter | No |
| doubles | DoubleListRelationFilter | No |
| events | EventListRelationFilter | No |
| user | UserNullableRelationFilter | UserWhereInput | Null | Yes |
| invites | InviteListRelationFilter | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| firstName | SortOrder | SortOrderInput | No |
| lastName | SortOrder | SortOrderInput | No |
| categoryId | SortOrder | No |
| position | SortOrder | SortOrderInput | No |
| category | CategoryOrderByWithRelationInput | No |
| matches | MatchOrderByRelationAggregateInput | No |
| doubles | DoubleOrderByRelationAggregateInput | No |
| events | EventOrderByRelationAggregateInput | No |
| user | UserOrderByWithRelationInput | No |
| invites | InviteOrderByRelationAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| AND | PlayerWhereInput | PlayerWhereInput[] | No |
| OR | PlayerWhereInput[] | No |
| NOT | PlayerWhereInput | PlayerWhereInput[] | No |
| firstName | StringNullableFilter | String | Null | Yes |
| lastName | StringNullableFilter | String | Null | Yes |
| categoryId | StringFilter | String | No |
| position | EnumPlayerPositionNullableFilter | PlayerPosition | Null | Yes |
| category | CategoryRelationFilter | CategoryWhereInput | No |
| matches | MatchListRelationFilter | No |
| doubles | DoubleListRelationFilter | No |
| events | EventListRelationFilter | No |
| user | UserNullableRelationFilter | UserWhereInput | Null | Yes |
| invites | InviteListRelationFilter | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| firstName | SortOrder | SortOrderInput | No |
| lastName | SortOrder | SortOrderInput | No |
| categoryId | SortOrder | No |
| position | SortOrder | SortOrderInput | No |
| _count | PlayerCountOrderByAggregateInput | No |
| _max | PlayerMaxOrderByAggregateInput | No |
| _min | PlayerMinOrderByAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | PlayerScalarWhereWithAggregatesInput | PlayerScalarWhereWithAggregatesInput[] | No |
| OR | PlayerScalarWhereWithAggregatesInput[] | No |
| NOT | PlayerScalarWhereWithAggregatesInput | PlayerScalarWhereWithAggregatesInput[] | No |
| id | StringWithAggregatesFilter | String | No |
| firstName | StringNullableWithAggregatesFilter | String | Null | Yes |
| lastName | StringNullableWithAggregatesFilter | String | Null | Yes |
| categoryId | StringWithAggregatesFilter | String | No |
| position | EnumPlayerPositionNullableWithAggregatesFilter | PlayerPosition | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| AND | DoubleWhereInput | DoubleWhereInput[] | No |
| OR | DoubleWhereInput[] | No |
| NOT | DoubleWhereInput | DoubleWhereInput[] | No |
| id | StringFilter | String | No |
| categoryId | StringFilter | String | No |
| players | PlayerListRelationFilter | No |
| matches | MatchListRelationFilter | No |
| category | CategoryRelationFilter | CategoryWhereInput | No |
| games | GameListRelationFilter | No |
| sets | SetListRelationFilter | No |
| matchesWins | MatchListRelationFilter | No |
| setsWins | SetListRelationFilter | No |
| gamesWins | GameListRelationFilter | No |
| eventRequests | EventRequestListRelationFilter | No |
| eventDouble | EventDoubleListRelationFilter | No |
| invites | InviteListRelationFilter | No |
| firstPlaceInGroups | DoublesGroupListRelationFilter | No |
| secondPlaceInGroups | DoublesGroupListRelationFilter | No |
| firstPlaceInCategory | CategoryGroupListRelationFilter | No |
| secondPlaceInCategory | CategoryGroupListRelationFilter | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| categoryId | SortOrder | No |
| players | PlayerOrderByRelationAggregateInput | No |
| matches | MatchOrderByRelationAggregateInput | No |
| category | CategoryOrderByWithRelationInput | No |
| games | GameOrderByRelationAggregateInput | No |
| sets | SetOrderByRelationAggregateInput | No |
| matchesWins | MatchOrderByRelationAggregateInput | No |
| setsWins | SetOrderByRelationAggregateInput | No |
| gamesWins | GameOrderByRelationAggregateInput | No |
| eventRequests | EventRequestOrderByRelationAggregateInput | No |
| eventDouble | EventDoubleOrderByRelationAggregateInput | No |
| invites | InviteOrderByRelationAggregateInput | No |
| firstPlaceInGroups | DoublesGroupOrderByRelationAggregateInput | No |
| secondPlaceInGroups | DoublesGroupOrderByRelationAggregateInput | No |
| firstPlaceInCategory | CategoryGroupOrderByRelationAggregateInput | No |
| secondPlaceInCategory | CategoryGroupOrderByRelationAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| AND | DoubleWhereInput | DoubleWhereInput[] | No |
| OR | DoubleWhereInput[] | No |
| NOT | DoubleWhereInput | DoubleWhereInput[] | No |
| categoryId | StringFilter | String | No |
| players | PlayerListRelationFilter | No |
| matches | MatchListRelationFilter | No |
| category | CategoryRelationFilter | CategoryWhereInput | No |
| games | GameListRelationFilter | No |
| sets | SetListRelationFilter | No |
| matchesWins | MatchListRelationFilter | No |
| setsWins | SetListRelationFilter | No |
| gamesWins | GameListRelationFilter | No |
| eventRequests | EventRequestListRelationFilter | No |
| eventDouble | EventDoubleListRelationFilter | No |
| invites | InviteListRelationFilter | No |
| firstPlaceInGroups | DoublesGroupListRelationFilter | No |
| secondPlaceInGroups | DoublesGroupListRelationFilter | No |
| firstPlaceInCategory | CategoryGroupListRelationFilter | No |
| secondPlaceInCategory | CategoryGroupListRelationFilter | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| categoryId | SortOrder | No |
| _count | DoubleCountOrderByAggregateInput | No |
| _max | DoubleMaxOrderByAggregateInput | No |
| _min | DoubleMinOrderByAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | DoubleScalarWhereWithAggregatesInput | DoubleScalarWhereWithAggregatesInput[] | No |
| OR | DoubleScalarWhereWithAggregatesInput[] | No |
| NOT | DoubleScalarWhereWithAggregatesInput | DoubleScalarWhereWithAggregatesInput[] | No |
| id | StringWithAggregatesFilter | String | No |
| categoryId | StringWithAggregatesFilter | String | No |
| Name | Type | Nullable |
|---|---|---|
| AND | PlaceWhereInput | PlaceWhereInput[] | No |
| OR | PlaceWhereInput[] | No |
| NOT | PlaceWhereInput | PlaceWhereInput[] | No |
| id | StringFilter | String | No |
| name | StringNullableFilter | String | Null | Yes |
| address | StringNullableFilter | String | Null | Yes |
| events | EventListRelationFilter | No |
| courts | CourtListRelationFilter | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| name | SortOrder | SortOrderInput | No |
| address | SortOrder | SortOrderInput | No |
| events | EventOrderByRelationAggregateInput | No |
| courts | CourtOrderByRelationAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| address | String | No |
| AND | PlaceWhereInput | PlaceWhereInput[] | No |
| OR | PlaceWhereInput[] | No |
| NOT | PlaceWhereInput | PlaceWhereInput[] | No |
| name | StringNullableFilter | String | Null | Yes |
| events | EventListRelationFilter | No |
| courts | CourtListRelationFilter | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| name | SortOrder | SortOrderInput | No |
| address | SortOrder | SortOrderInput | No |
| _count | PlaceCountOrderByAggregateInput | No |
| _max | PlaceMaxOrderByAggregateInput | No |
| _min | PlaceMinOrderByAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | PlaceScalarWhereWithAggregatesInput | PlaceScalarWhereWithAggregatesInput[] | No |
| OR | PlaceScalarWhereWithAggregatesInput[] | No |
| NOT | PlaceScalarWhereWithAggregatesInput | PlaceScalarWhereWithAggregatesInput[] | No |
| id | StringWithAggregatesFilter | String | No |
| name | StringNullableWithAggregatesFilter | String | Null | Yes |
| address | StringNullableWithAggregatesFilter | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| name | String | No |
| isActive | Boolean | No |
| isFinished | Boolean | No |
| startDate | DateTime | Null | Yes |
| finishDate | DateTime | Null | Yes |
| matchDurationInMinutes | Int | Null | Yes |
| timeOfFirstMatch | Int | Null | Yes |
| timeOfLastMatch | Int | Null | Yes |
| eventType | EventType | No |
| matchType | MatchType | No |
| isGroupMatchesFinished | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| isActive | Boolean | BoolFieldUpdateOperationsInput | No |
| isFinished | Boolean | BoolFieldUpdateOperationsInput | No |
| startDate | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| finishDate | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| matchDurationInMinutes | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| timeOfFirstMatch | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| timeOfLastMatch | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| eventType | EventType | EnumEventTypeFieldUpdateOperationsInput | No |
| matchType | MatchType | EnumMatchTypeFieldUpdateOperationsInput | No |
| isGroupMatchesFinished | Boolean | BoolFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| isActive | Boolean | BoolFieldUpdateOperationsInput | No |
| isFinished | Boolean | BoolFieldUpdateOperationsInput | No |
| startDate | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| finishDate | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| matchDurationInMinutes | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| timeOfFirstMatch | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| timeOfLastMatch | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| eventType | EventType | EnumEventTypeFieldUpdateOperationsInput | No |
| matchType | MatchType | EnumMatchTypeFieldUpdateOperationsInput | No |
| isGroupMatchesFinished | Boolean | BoolFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| groupsStageFinished | Boolean | No |
| categoryFinished | Boolean | No |
| isFinalMatchesCreated | Boolean | No |
| category | CategoryCreateNestedOneWithoutCategoryGroupInput | No |
| groups | DoublesGroupCreateNestedManyWithoutCategoryGroupInput | No |
| event | EventCreateNestedOneWithoutCategoriesGroupsInput | No |
| finalMatches | EventMatchCreateNestedManyWithoutCategoryGroupInput | No |
| matchesWithReference | MatchesReferencedCreateNestedManyWithoutCategoryGroupInput | No |
| firstPlace | DoubleCreateNestedOneWithoutFirstPlaceInCategoryInput | No |
| secondPlace | DoubleCreateNestedOneWithoutSecondPlaceInCategoryInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| categoryId | String | No |
| eventId | String | Null | Yes |
| firstPlaceId | String | Null | Yes |
| secondPlaceId | String | Null | Yes |
| groupsStageFinished | Boolean | No |
| categoryFinished | Boolean | No |
| isFinalMatchesCreated | Boolean | No |
| groups | DoublesGroupUncheckedCreateNestedManyWithoutCategoryGroupInput | No |
| finalMatches | EventMatchUncheckedCreateNestedManyWithoutCategoryGroupInput | No |
| matchesWithReference | MatchesReferencedUncheckedCreateNestedManyWithoutCategoryGroupInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| groupsStageFinished | Boolean | BoolFieldUpdateOperationsInput | No |
| categoryFinished | Boolean | BoolFieldUpdateOperationsInput | No |
| isFinalMatchesCreated | Boolean | BoolFieldUpdateOperationsInput | No |
| category | CategoryUpdateOneRequiredWithoutCategoryGroupNestedInput | No |
| groups | DoublesGroupUpdateManyWithoutCategoryGroupNestedInput | No |
| event | EventUpdateOneWithoutCategoriesGroupsNestedInput | No |
| finalMatches | EventMatchUpdateManyWithoutCategoryGroupNestedInput | No |
| matchesWithReference | MatchesReferencedUpdateManyWithoutCategoryGroupNestedInput | No |
| firstPlace | DoubleUpdateOneWithoutFirstPlaceInCategoryNestedInput | No |
| secondPlace | DoubleUpdateOneWithoutSecondPlaceInCategoryNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| categoryId | String | StringFieldUpdateOperationsInput | No |
| eventId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| firstPlaceId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| secondPlaceId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| groupsStageFinished | Boolean | BoolFieldUpdateOperationsInput | No |
| categoryFinished | Boolean | BoolFieldUpdateOperationsInput | No |
| isFinalMatchesCreated | Boolean | BoolFieldUpdateOperationsInput | No |
| groups | DoublesGroupUncheckedUpdateManyWithoutCategoryGroupNestedInput | No |
| finalMatches | EventMatchUncheckedUpdateManyWithoutCategoryGroupNestedInput | No |
| matchesWithReference | MatchesReferencedUncheckedUpdateManyWithoutCategoryGroupNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| categoryId | String | No |
| eventId | String | Null | Yes |
| firstPlaceId | String | Null | Yes |
| secondPlaceId | String | Null | Yes |
| groupsStageFinished | Boolean | No |
| categoryFinished | Boolean | No |
| isFinalMatchesCreated | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| groupsStageFinished | Boolean | BoolFieldUpdateOperationsInput | No |
| categoryFinished | Boolean | BoolFieldUpdateOperationsInput | No |
| isFinalMatchesCreated | Boolean | BoolFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| categoryId | String | StringFieldUpdateOperationsInput | No |
| eventId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| firstPlaceId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| secondPlaceId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| groupsStageFinished | Boolean | BoolFieldUpdateOperationsInput | No |
| categoryFinished | Boolean | BoolFieldUpdateOperationsInput | No |
| isFinalMatchesCreated | Boolean | BoolFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| key | String | No |
| groupFinished | Boolean | No |
| eventDoubles | EventDoubleCreateNestedManyWithoutDoublesGroupInput | No |
| categoryGroup | CategoryGroupCreateNestedOneWithoutGroupsInput | No |
| firstPlace | DoubleCreateNestedOneWithoutFirstPlaceInGroupsInput | No |
| secondPlace | DoubleCreateNestedOneWithoutSecondPlaceInGroupsInput | No |
| groupMatches | EventMatchCreateNestedManyWithoutDoublesGroupInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| key | String | No |
| categoryGroupId | String | Null | Yes |
| firstPlaceDoublesId | String | Null | Yes |
| secondPlaceDoublesId | String | Null | Yes |
| groupFinished | Boolean | No |
| eventDoubles | EventDoubleUncheckedCreateNestedManyWithoutDoublesGroupInput | No |
| groupMatches | EventMatchUncheckedCreateNestedManyWithoutDoublesGroupInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| key | String | StringFieldUpdateOperationsInput | No |
| groupFinished | Boolean | BoolFieldUpdateOperationsInput | No |
| eventDoubles | EventDoubleUpdateManyWithoutDoublesGroupNestedInput | No |
| categoryGroup | CategoryGroupUpdateOneWithoutGroupsNestedInput | No |
| firstPlace | DoubleUpdateOneWithoutFirstPlaceInGroupsNestedInput | No |
| secondPlace | DoubleUpdateOneWithoutSecondPlaceInGroupsNestedInput | No |
| groupMatches | EventMatchUpdateManyWithoutDoublesGroupNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| key | String | StringFieldUpdateOperationsInput | No |
| categoryGroupId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| firstPlaceDoublesId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| secondPlaceDoublesId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| groupFinished | Boolean | BoolFieldUpdateOperationsInput | No |
| eventDoubles | EventDoubleUncheckedUpdateManyWithoutDoublesGroupNestedInput | No |
| groupMatches | EventMatchUncheckedUpdateManyWithoutDoublesGroupNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| key | String | No |
| categoryGroupId | String | Null | Yes |
| firstPlaceDoublesId | String | Null | Yes |
| secondPlaceDoublesId | String | Null | Yes |
| groupFinished | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| key | String | StringFieldUpdateOperationsInput | No |
| groupFinished | Boolean | BoolFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| key | String | StringFieldUpdateOperationsInput | No |
| categoryGroupId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| firstPlaceDoublesId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| secondPlaceDoublesId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| groupFinished | Boolean | BoolFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| status | RequestStatus | No |
| event | EventCreateNestedOneWithoutEventRequestsInput | No |
| double | DoubleCreateNestedOneWithoutEventRequestsInput | No |
| category | CategoryCreateNestedOneWithoutEventRequestsInput | No |
| Name | Type | Nullable |
|---|---|---|
| eventId | String | No |
| doubleId | String | No |
| categoryId | String | No |
| status | RequestStatus | No |
| Name | Type | Nullable |
|---|---|---|
| status | RequestStatus | EnumRequestStatusFieldUpdateOperationsInput | No |
| event | EventUpdateOneRequiredWithoutEventRequestsNestedInput | No |
| double | DoubleUpdateOneRequiredWithoutEventRequestsNestedInput | No |
| category | CategoryUpdateOneRequiredWithoutEventRequestsNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| eventId | String | StringFieldUpdateOperationsInput | No |
| doubleId | String | StringFieldUpdateOperationsInput | No |
| categoryId | String | StringFieldUpdateOperationsInput | No |
| status | RequestStatus | EnumRequestStatusFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| eventId | String | No |
| doubleId | String | No |
| categoryId | String | No |
| status | RequestStatus | No |
| Name | Type | Nullable |
|---|---|---|
| status | RequestStatus | EnumRequestStatusFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| eventId | String | StringFieldUpdateOperationsInput | No |
| doubleId | String | StringFieldUpdateOperationsInput | No |
| categoryId | String | StringFieldUpdateOperationsInput | No |
| status | RequestStatus | EnumRequestStatusFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| name | String | No |
| isAvailable | Boolean | No |
| events | EventCreateNestedManyWithoutCourtsInput | No |
| matches | MatchCreateNestedManyWithoutCourtInput | No |
| place | PlaceCreateNestedOneWithoutCourtsInput | No |
| matchDates | MatchDateCreateNestedManyWithoutCourtInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| name | String | No |
| isAvailable | Boolean | No |
| placeId | String | No |
| events | EventUncheckedCreateNestedManyWithoutCourtsInput | No |
| matches | MatchUncheckedCreateNestedManyWithoutCourtInput | No |
| matchDates | MatchDateUncheckedCreateNestedManyWithoutCourtInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| isAvailable | Boolean | BoolFieldUpdateOperationsInput | No |
| events | EventUpdateManyWithoutCourtsNestedInput | No |
| matches | MatchUpdateManyWithoutCourtNestedInput | No |
| place | PlaceUpdateOneRequiredWithoutCourtsNestedInput | No |
| matchDates | MatchDateUpdateManyWithoutCourtNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| isAvailable | Boolean | BoolFieldUpdateOperationsInput | No |
| placeId | String | StringFieldUpdateOperationsInput | No |
| events | EventUncheckedUpdateManyWithoutCourtsNestedInput | No |
| matches | MatchUncheckedUpdateManyWithoutCourtNestedInput | No |
| matchDates | MatchDateUncheckedUpdateManyWithoutCourtNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| name | String | No |
| isAvailable | Boolean | No |
| placeId | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| isAvailable | Boolean | BoolFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| isAvailable | Boolean | BoolFieldUpdateOperationsInput | No |
| placeId | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| event | EventCreateNestedOneWithoutEventDoublesInput | No |
| double | DoubleCreateNestedOneWithoutEventDoubleInput | No |
| category | CategoryCreateNestedOneWithoutEventDoublesInput | No |
| atRest | MatchDateCreateNestedOneWithoutAtRestInput | No |
| DoublesGroup | DoublesGroupCreateNestedOneWithoutEventDoublesInput | No |
| Name | Type | Nullable |
|---|---|---|
| eventId | String | No |
| doubleId | String | No |
| categoryId | String | No |
| atRestId | String | Null | Yes |
| doublesGroupId | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| event | EventUpdateOneRequiredWithoutEventDoublesNestedInput | No |
| double | DoubleUpdateOneRequiredWithoutEventDoubleNestedInput | No |
| category | CategoryUpdateOneRequiredWithoutEventDoublesNestedInput | No |
| atRest | MatchDateUpdateOneWithoutAtRestNestedInput | No |
| DoublesGroup | DoublesGroupUpdateOneWithoutEventDoublesNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| eventId | String | StringFieldUpdateOperationsInput | No |
| doubleId | String | StringFieldUpdateOperationsInput | No |
| categoryId | String | StringFieldUpdateOperationsInput | No |
| atRestId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| doublesGroupId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| eventId | String | No |
| doubleId | String | No |
| categoryId | String | No |
| atRestId | String | Null | Yes |
| doublesGroupId | String | Null | Yes |
| Name | Type | Nullable |
|---|
| Name | Type | Nullable |
|---|---|---|
| eventId | String | StringFieldUpdateOperationsInput | No |
| doubleId | String | StringFieldUpdateOperationsInput | No |
| categoryId | String | StringFieldUpdateOperationsInput | No |
| atRestId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| doublesGroupId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| level | Int | No |
| type | CatType | No |
| players | PlayerCreateNestedManyWithoutCategoryInput | No |
| doubles | DoubleCreateNestedManyWithoutCategoryInput | No |
| events | EventCreateNestedManyWithoutCategoriesInput | No |
| matches | MatchCreateNestedManyWithoutCategoryInput | No |
| eventDoubles | EventDoubleCreateNestedManyWithoutCategoryInput | No |
| eventRequests | EventRequestCreateNestedManyWithoutCategoryInput | No |
| categoryGroup | CategoryGroupCreateNestedManyWithoutCategoryInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| level | Int | No |
| type | CatType | No |
| players | PlayerUncheckedCreateNestedManyWithoutCategoryInput | No |
| doubles | DoubleUncheckedCreateNestedManyWithoutCategoryInput | No |
| events | EventUncheckedCreateNestedManyWithoutCategoriesInput | No |
| matches | MatchUncheckedCreateNestedManyWithoutCategoryInput | No |
| eventDoubles | EventDoubleUncheckedCreateNestedManyWithoutCategoryInput | No |
| eventRequests | EventRequestUncheckedCreateNestedManyWithoutCategoryInput | No |
| categoryGroup | CategoryGroupUncheckedCreateNestedManyWithoutCategoryInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| level | Int | IntFieldUpdateOperationsInput | No |
| type | CatType | EnumCatTypeFieldUpdateOperationsInput | No |
| players | PlayerUpdateManyWithoutCategoryNestedInput | No |
| doubles | DoubleUpdateManyWithoutCategoryNestedInput | No |
| events | EventUpdateManyWithoutCategoriesNestedInput | No |
| matches | MatchUpdateManyWithoutCategoryNestedInput | No |
| eventDoubles | EventDoubleUpdateManyWithoutCategoryNestedInput | No |
| eventRequests | EventRequestUpdateManyWithoutCategoryNestedInput | No |
| categoryGroup | CategoryGroupUpdateManyWithoutCategoryNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| level | Int | IntFieldUpdateOperationsInput | No |
| type | CatType | EnumCatTypeFieldUpdateOperationsInput | No |
| players | PlayerUncheckedUpdateManyWithoutCategoryNestedInput | No |
| doubles | DoubleUncheckedUpdateManyWithoutCategoryNestedInput | No |
| events | EventUncheckedUpdateManyWithoutCategoriesNestedInput | No |
| matches | MatchUncheckedUpdateManyWithoutCategoryNestedInput | No |
| eventDoubles | EventDoubleUncheckedUpdateManyWithoutCategoryNestedInput | No |
| eventRequests | EventRequestUncheckedUpdateManyWithoutCategoryNestedInput | No |
| categoryGroup | CategoryGroupUncheckedUpdateManyWithoutCategoryNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| level | Int | No |
| type | CatType | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| level | Int | IntFieldUpdateOperationsInput | No |
| type | CatType | EnumCatTypeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| level | Int | IntFieldUpdateOperationsInput | No |
| type | CatType | EnumCatTypeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| number | Int | No |
| type | EventMatchType | No |
| event | EventCreateNestedOneWithoutEventMatchesInput | No |
| match | MatchCreateNestedOneWithoutEventMatchInput | No |
| categoryGroup | CategoryGroupCreateNestedOneWithoutFinalMatchesInput | No |
| doublesGroup | DoublesGroupCreateNestedOneWithoutGroupMatchesInput | No |
| Name | Type | Nullable |
|---|---|---|
| number | Int | No |
| type | EventMatchType | No |
| eventId | String | No |
| matchId | String | No |
| categoryGroupId | String | Null | Yes |
| doublesGroupId | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| number | Int | IntFieldUpdateOperationsInput | No |
| type | EventMatchType | EnumEventMatchTypeFieldUpdateOperationsInput | No |
| event | EventUpdateOneRequiredWithoutEventMatchesNestedInput | No |
| match | MatchUpdateOneRequiredWithoutEventMatchNestedInput | No |
| categoryGroup | CategoryGroupUpdateOneWithoutFinalMatchesNestedInput | No |
| doublesGroup | DoublesGroupUpdateOneWithoutGroupMatchesNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| number | Int | IntFieldUpdateOperationsInput | No |
| type | EventMatchType | EnumEventMatchTypeFieldUpdateOperationsInput | No |
| eventId | String | StringFieldUpdateOperationsInput | No |
| matchId | String | StringFieldUpdateOperationsInput | No |
| categoryGroupId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| doublesGroupId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| number | Int | No |
| type | EventMatchType | No |
| eventId | String | No |
| matchId | String | No |
| categoryGroupId | String | Null | Yes |
| doublesGroupId | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| number | Int | IntFieldUpdateOperationsInput | No |
| type | EventMatchType | EnumEventMatchTypeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| number | Int | IntFieldUpdateOperationsInput | No |
| type | EventMatchType | EnumEventMatchTypeFieldUpdateOperationsInput | No |
| eventId | String | StringFieldUpdateOperationsInput | No |
| matchId | String | StringFieldUpdateOperationsInput | No |
| categoryGroupId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| doublesGroupId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| isUpdated | Boolean | No |
| matchA | MatchCreateNestedOneWithoutMatchRefAInput | No |
| matchB | MatchCreateNestedOneWithoutMatchRefBInput | No |
| refMatch | MatchCreateNestedOneWithoutMatchRefInput | No |
| categoryGroup | CategoryGroupCreateNestedOneWithoutMatchesWithReferenceInput | No |
| Name | Type | Nullable |
|---|---|---|
| matchAId | String | No |
| matchBId | String | Null | Yes |
| refMatchId | String | Null | Yes |
| categoryGroupId | String | Null | Yes |
| isUpdated | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| isUpdated | Boolean | BoolFieldUpdateOperationsInput | No |
| matchA | MatchUpdateOneWithoutMatchRefANestedInput | No |
| matchB | MatchUpdateOneWithoutMatchRefBNestedInput | No |
| refMatch | MatchUpdateOneWithoutMatchRefNestedInput | No |
| categoryGroup | CategoryGroupUpdateOneWithoutMatchesWithReferenceNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| matchAId | String | StringFieldUpdateOperationsInput | No |
| matchBId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| refMatchId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| categoryGroupId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| isUpdated | Boolean | BoolFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| matchAId | String | No |
| matchBId | String | Null | Yes |
| refMatchId | String | Null | Yes |
| categoryGroupId | String | Null | Yes |
| isUpdated | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| isUpdated | Boolean | BoolFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| matchAId | String | StringFieldUpdateOperationsInput | No |
| matchBId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| refMatchId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| categoryGroupId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| isUpdated | Boolean | BoolFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| isFinished | Boolean | No |
| type | MatchType | No |
| players | PlayerCreateNestedManyWithoutMatchesInput | No |
| category | CategoryCreateNestedOneWithoutMatchesInput | No |
| winner | DoubleCreateNestedOneWithoutMatchesWinsInput | No |
| sets | SetCreateNestedManyWithoutMatchInput | No |
| doubles | DoubleCreateNestedManyWithoutMatchesInput | No |
| event | EventCreateNestedOneWithoutMatchesInput | No |
| matchDate | MatchDateCreateNestedOneWithoutMatchInput | No |
| court | CourtCreateNestedOneWithoutMatchesInput | No |
| invite | InviteCreateNestedOneWithoutMatchInput | No |
| eventMatch | EventMatchCreateNestedOneWithoutMatchInput | No |
| matchRefA | MatchesReferencedCreateNestedOneWithoutMatchAInput | No |
| matchRefB | MatchesReferencedCreateNestedOneWithoutMatchBInput | No |
| matchRef | MatchesReferencedCreateNestedOneWithoutRefMatchInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| isFinished | Boolean | No |
| categoryId | String | Null | Yes |
| winnerDoublesId | String | Null | Yes |
| eventId | String | Null | Yes |
| type | MatchType | No |
| courtId | String | Null | Yes |
| players | PlayerUncheckedCreateNestedManyWithoutMatchesInput | No |
| sets | SetUncheckedCreateNestedManyWithoutMatchInput | No |
| doubles | DoubleUncheckedCreateNestedManyWithoutMatchesInput | No |
| matchDate | MatchDateUncheckedCreateNestedOneWithoutMatchInput | No |
| invite | InviteUncheckedCreateNestedOneWithoutMatchInput | No |
| eventMatch | EventMatchUncheckedCreateNestedOneWithoutMatchInput | No |
| matchRefA | MatchesReferencedUncheckedCreateNestedOneWithoutMatchAInput | No |
| matchRefB | MatchesReferencedUncheckedCreateNestedOneWithoutMatchBInput | No |
| matchRef | MatchesReferencedUncheckedCreateNestedOneWithoutRefMatchInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| isFinished | Boolean | BoolFieldUpdateOperationsInput | No |
| type | MatchType | EnumMatchTypeFieldUpdateOperationsInput | No |
| players | PlayerUpdateManyWithoutMatchesNestedInput | No |
| category | CategoryUpdateOneWithoutMatchesNestedInput | No |
| winner | DoubleUpdateOneWithoutMatchesWinsNestedInput | No |
| sets | SetUpdateManyWithoutMatchNestedInput | No |
| doubles | DoubleUpdateManyWithoutMatchesNestedInput | No |
| event | EventUpdateOneWithoutMatchesNestedInput | No |
| matchDate | MatchDateUpdateOneWithoutMatchNestedInput | No |
| court | CourtUpdateOneWithoutMatchesNestedInput | No |
| invite | InviteUpdateOneWithoutMatchNestedInput | No |
| eventMatch | EventMatchUpdateOneWithoutMatchNestedInput | No |
| matchRefA | MatchesReferencedUpdateOneWithoutMatchANestedInput | No |
| matchRefB | MatchesReferencedUpdateOneWithoutMatchBNestedInput | No |
| matchRef | MatchesReferencedUpdateOneWithoutRefMatchNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| isFinished | Boolean | No |
| categoryId | String | Null | Yes |
| winnerDoublesId | String | Null | Yes |
| eventId | String | Null | Yes |
| type | MatchType | No |
| courtId | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| isFinished | Boolean | BoolFieldUpdateOperationsInput | No |
| type | MatchType | EnumMatchTypeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| isFinished | Boolean | BoolFieldUpdateOperationsInput | No |
| categoryId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| winnerDoublesId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| eventId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| type | MatchType | EnumMatchTypeFieldUpdateOperationsInput | No |
| courtId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| start | DateTime | No |
| finish | DateTime | No |
| event | EventCreateNestedOneWithoutMatchDatesInput | No |
| match | MatchCreateNestedOneWithoutMatchDateInput | No |
| court | CourtCreateNestedOneWithoutMatchDatesInput | No |
| atRest | EventDoubleCreateNestedManyWithoutAtRestInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| eventId | String | No |
| matchId | String | Null | Yes |
| start | DateTime | No |
| finish | DateTime | No |
| courtId | String | No |
| atRest | EventDoubleUncheckedCreateNestedManyWithoutAtRestInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| start | DateTime | DateTimeFieldUpdateOperationsInput | No |
| finish | DateTime | DateTimeFieldUpdateOperationsInput | No |
| event | EventUpdateOneRequiredWithoutMatchDatesNestedInput | No |
| match | MatchUpdateOneWithoutMatchDateNestedInput | No |
| court | CourtUpdateOneRequiredWithoutMatchDatesNestedInput | No |
| atRest | EventDoubleUpdateManyWithoutAtRestNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| eventId | String | StringFieldUpdateOperationsInput | No |
| matchId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| start | DateTime | DateTimeFieldUpdateOperationsInput | No |
| finish | DateTime | DateTimeFieldUpdateOperationsInput | No |
| courtId | String | StringFieldUpdateOperationsInput | No |
| atRest | EventDoubleUncheckedUpdateManyWithoutAtRestNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| eventId | String | No |
| matchId | String | Null | Yes |
| start | DateTime | No |
| finish | DateTime | No |
| courtId | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| start | DateTime | DateTimeFieldUpdateOperationsInput | No |
| finish | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| eventId | String | StringFieldUpdateOperationsInput | No |
| matchId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| start | DateTime | DateTimeFieldUpdateOperationsInput | No |
| finish | DateTime | DateTimeFieldUpdateOperationsInput | No |
| courtId | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| type | SetType | No |
| number | Int | No |
| result | String | Null | Yes |
| isFinished | Boolean | No |
| doubles | DoubleCreateNestedManyWithoutSetsInput | No |
| winner | DoubleCreateNestedOneWithoutSetsWinsInput | No |
| match | MatchCreateNestedOneWithoutSetsInput | No |
| games | GameCreateNestedManyWithoutSetInput | No |
| events | EventCreateNestedManyWithoutSetsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| type | SetType | No |
| number | Int | No |
| setWinnerId | String | Null | Yes |
| result | String | Null | Yes |
| matchId | String | No |
| isFinished | Boolean | No |
| doubles | DoubleUncheckedCreateNestedManyWithoutSetsInput | No |
| games | GameUncheckedCreateNestedManyWithoutSetInput | No |
| events | EventUncheckedCreateNestedManyWithoutSetsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| type | SetType | EnumSetTypeFieldUpdateOperationsInput | No |
| number | Int | IntFieldUpdateOperationsInput | No |
| result | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| isFinished | Boolean | BoolFieldUpdateOperationsInput | No |
| doubles | DoubleUpdateManyWithoutSetsNestedInput | No |
| winner | DoubleUpdateOneWithoutSetsWinsNestedInput | No |
| match | MatchUpdateOneRequiredWithoutSetsNestedInput | No |
| games | GameUpdateManyWithoutSetNestedInput | No |
| events | EventUpdateManyWithoutSetsNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| type | SetType | EnumSetTypeFieldUpdateOperationsInput | No |
| number | Int | IntFieldUpdateOperationsInput | No |
| setWinnerId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| result | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| matchId | String | StringFieldUpdateOperationsInput | No |
| isFinished | Boolean | BoolFieldUpdateOperationsInput | No |
| doubles | DoubleUncheckedUpdateManyWithoutSetsNestedInput | No |
| games | GameUncheckedUpdateManyWithoutSetNestedInput | No |
| events | EventUncheckedUpdateManyWithoutSetsNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| type | SetType | No |
| number | Int | No |
| setWinnerId | String | Null | Yes |
| result | String | Null | Yes |
| matchId | String | No |
| isFinished | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| type | SetType | EnumSetTypeFieldUpdateOperationsInput | No |
| number | Int | IntFieldUpdateOperationsInput | No |
| result | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| isFinished | Boolean | BoolFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| type | SetType | EnumSetTypeFieldUpdateOperationsInput | No |
| number | Int | IntFieldUpdateOperationsInput | No |
| setWinnerId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| result | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| matchId | String | StringFieldUpdateOperationsInput | No |
| isFinished | Boolean | BoolFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| set | SetCreateNestedOneWithoutGamesInput | No |
| doubles | DoubleCreateNestedManyWithoutGamesInput | No |
| winner | DoubleCreateNestedOneWithoutGamesWinsInput | No |
| events | EventCreateNestedManyWithoutGamesInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| setId | String | No |
| winnerId | String | Null | Yes |
| doubles | DoubleUncheckedCreateNestedManyWithoutGamesInput | No |
| events | EventUncheckedCreateNestedManyWithoutGamesInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| set | SetUpdateOneRequiredWithoutGamesNestedInput | No |
| doubles | DoubleUpdateManyWithoutGamesNestedInput | No |
| winner | DoubleUpdateOneWithoutGamesWinsNestedInput | No |
| events | EventUpdateManyWithoutGamesNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| setId | String | StringFieldUpdateOperationsInput | No |
| winnerId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| doubles | DoubleUncheckedUpdateManyWithoutGamesNestedInput | No |
| events | EventUncheckedUpdateManyWithoutGamesNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| setId | String | No |
| winnerId | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| setId | String | StringFieldUpdateOperationsInput | No |
| winnerId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| firstName | String | Null | Yes |
| lastName | String | Null | Yes |
| String | No | |
| password | String | No |
| dob | DateTime | Null | Yes |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| role | Role | No |
| hashedRt | String | Null | Yes |
| profileImage | String | Null | Yes |
| player | PlayerCreateNestedOneWithoutUserInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| firstName | String | Null | Yes |
| lastName | String | Null | Yes |
| String | No | |
| password | String | No |
| dob | DateTime | Null | Yes |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| playerId | String | Null | Yes |
| role | Role | No |
| hashedRt | String | Null | Yes |
| profileImage | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| firstName | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| lastName | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| String | StringFieldUpdateOperationsInput | No | |
| password | String | StringFieldUpdateOperationsInput | No |
| dob | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| role | Role | EnumRoleFieldUpdateOperationsInput | No |
| hashedRt | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| profileImage | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| player | PlayerUpdateOneWithoutUserNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| firstName | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| lastName | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| String | StringFieldUpdateOperationsInput | No | |
| password | String | StringFieldUpdateOperationsInput | No |
| dob | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| playerId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| role | Role | EnumRoleFieldUpdateOperationsInput | No |
| hashedRt | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| profileImage | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| firstName | String | Null | Yes |
| lastName | String | Null | Yes |
| String | No | |
| password | String | No |
| dob | DateTime | Null | Yes |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| playerId | String | Null | Yes |
| role | Role | No |
| hashedRt | String | Null | Yes |
| profileImage | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| firstName | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| lastName | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| String | StringFieldUpdateOperationsInput | No | |
| password | String | StringFieldUpdateOperationsInput | No |
| dob | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| role | Role | EnumRoleFieldUpdateOperationsInput | No |
| hashedRt | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| profileImage | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| firstName | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| lastName | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| String | StringFieldUpdateOperationsInput | No | |
| password | String | StringFieldUpdateOperationsInput | No |
| dob | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| playerId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| role | Role | EnumRoleFieldUpdateOperationsInput | No |
| hashedRt | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| profileImage | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| inviteType | InviteType | No |
| inviterId | String | No |
| invitedId | String | No |
| createdAt | DateTime | No |
| players | PlayerCreateNestedManyWithoutInvitesInput | No |
| double | DoubleCreateNestedOneWithoutInvitesInput | No |
| event | EventCreateNestedOneWithoutInviteInput | No |
| match | MatchCreateNestedOneWithoutInviteInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| inviteType | InviteType | No |
| doublesId | String | Null | Yes |
| eventId | String | Null | Yes |
| matchId | String | Null | Yes |
| inviterId | String | No |
| invitedId | String | No |
| createdAt | DateTime | No |
| players | PlayerUncheckedCreateNestedManyWithoutInvitesInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| inviteType | InviteType | EnumInviteTypeFieldUpdateOperationsInput | No |
| inviterId | String | StringFieldUpdateOperationsInput | No |
| invitedId | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| players | PlayerUpdateManyWithoutInvitesNestedInput | No |
| double | DoubleUpdateOneWithoutInvitesNestedInput | No |
| event | EventUpdateOneWithoutInviteNestedInput | No |
| match | MatchUpdateOneWithoutInviteNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| inviteType | InviteType | EnumInviteTypeFieldUpdateOperationsInput | No |
| doublesId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| eventId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| matchId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| inviterId | String | StringFieldUpdateOperationsInput | No |
| invitedId | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| players | PlayerUncheckedUpdateManyWithoutInvitesNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| inviteType | InviteType | No |
| doublesId | String | Null | Yes |
| eventId | String | Null | Yes |
| matchId | String | Null | Yes |
| inviterId | String | No |
| invitedId | String | No |
| createdAt | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| inviteType | InviteType | EnumInviteTypeFieldUpdateOperationsInput | No |
| inviterId | String | StringFieldUpdateOperationsInput | No |
| invitedId | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| inviteType | InviteType | EnumInviteTypeFieldUpdateOperationsInput | No |
| doublesId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| eventId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| matchId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| inviterId | String | StringFieldUpdateOperationsInput | No |
| invitedId | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| firstName | String | Null | Yes |
| lastName | String | Null | Yes |
| position | PlayerPosition | Null | Yes |
| category | CategoryCreateNestedOneWithoutPlayersInput | No |
| matches | MatchCreateNestedManyWithoutPlayersInput | No |
| doubles | DoubleCreateNestedManyWithoutPlayersInput | No |
| events | EventCreateNestedManyWithoutPlayersInput | No |
| user | UserCreateNestedOneWithoutPlayerInput | No |
| invites | InviteCreateNestedManyWithoutPlayersInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| firstName | String | Null | Yes |
| lastName | String | Null | Yes |
| categoryId | String | No |
| position | PlayerPosition | Null | Yes |
| matches | MatchUncheckedCreateNestedManyWithoutPlayersInput | No |
| doubles | DoubleUncheckedCreateNestedManyWithoutPlayersInput | No |
| events | EventUncheckedCreateNestedManyWithoutPlayersInput | No |
| user | UserUncheckedCreateNestedOneWithoutPlayerInput | No |
| invites | InviteUncheckedCreateNestedManyWithoutPlayersInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| firstName | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| lastName | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| position | PlayerPosition | NullableEnumPlayerPositionFieldUpdateOperationsInput | Null | Yes |
| category | CategoryUpdateOneRequiredWithoutPlayersNestedInput | No |
| matches | MatchUpdateManyWithoutPlayersNestedInput | No |
| doubles | DoubleUpdateManyWithoutPlayersNestedInput | No |
| events | EventUpdateManyWithoutPlayersNestedInput | No |
| user | UserUpdateOneWithoutPlayerNestedInput | No |
| invites | InviteUpdateManyWithoutPlayersNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| firstName | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| lastName | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| categoryId | String | StringFieldUpdateOperationsInput | No |
| position | PlayerPosition | NullableEnumPlayerPositionFieldUpdateOperationsInput | Null | Yes |
| matches | MatchUncheckedUpdateManyWithoutPlayersNestedInput | No |
| doubles | DoubleUncheckedUpdateManyWithoutPlayersNestedInput | No |
| events | EventUncheckedUpdateManyWithoutPlayersNestedInput | No |
| user | UserUncheckedUpdateOneWithoutPlayerNestedInput | No |
| invites | InviteUncheckedUpdateManyWithoutPlayersNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| firstName | String | Null | Yes |
| lastName | String | Null | Yes |
| categoryId | String | No |
| position | PlayerPosition | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| firstName | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| lastName | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| position | PlayerPosition | NullableEnumPlayerPositionFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| firstName | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| lastName | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| categoryId | String | StringFieldUpdateOperationsInput | No |
| position | PlayerPosition | NullableEnumPlayerPositionFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| players | PlayerCreateNestedManyWithoutDoublesInput | No |
| matches | MatchCreateNestedManyWithoutDoublesInput | No |
| category | CategoryCreateNestedOneWithoutDoublesInput | No |
| games | GameCreateNestedManyWithoutDoublesInput | No |
| sets | SetCreateNestedManyWithoutDoublesInput | No |
| matchesWins | MatchCreateNestedManyWithoutWinnerInput | No |
| setsWins | SetCreateNestedManyWithoutWinnerInput | No |
| gamesWins | GameCreateNestedManyWithoutWinnerInput | No |
| eventRequests | EventRequestCreateNestedManyWithoutDoubleInput | No |
| eventDouble | EventDoubleCreateNestedManyWithoutDoubleInput | No |
| invites | InviteCreateNestedManyWithoutDoubleInput | No |
| firstPlaceInGroups | DoublesGroupCreateNestedManyWithoutFirstPlaceInput | No |
| secondPlaceInGroups | DoublesGroupCreateNestedManyWithoutSecondPlaceInput | No |
| firstPlaceInCategory | CategoryGroupCreateNestedManyWithoutFirstPlaceInput | No |
| secondPlaceInCategory | CategoryGroupCreateNestedManyWithoutSecondPlaceInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| players | PlayerUpdateManyWithoutDoublesNestedInput | No |
| matches | MatchUpdateManyWithoutDoublesNestedInput | No |
| category | CategoryUpdateOneRequiredWithoutDoublesNestedInput | No |
| games | GameUpdateManyWithoutDoublesNestedInput | No |
| sets | SetUpdateManyWithoutDoublesNestedInput | No |
| matchesWins | MatchUpdateManyWithoutWinnerNestedInput | No |
| setsWins | SetUpdateManyWithoutWinnerNestedInput | No |
| gamesWins | GameUpdateManyWithoutWinnerNestedInput | No |
| eventRequests | EventRequestUpdateManyWithoutDoubleNestedInput | No |
| eventDouble | EventDoubleUpdateManyWithoutDoubleNestedInput | No |
| invites | InviteUpdateManyWithoutDoubleNestedInput | No |
| firstPlaceInGroups | DoublesGroupUpdateManyWithoutFirstPlaceNestedInput | No |
| secondPlaceInGroups | DoublesGroupUpdateManyWithoutSecondPlaceNestedInput | No |
| firstPlaceInCategory | CategoryGroupUpdateManyWithoutFirstPlaceNestedInput | No |
| secondPlaceInCategory | CategoryGroupUpdateManyWithoutSecondPlaceNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| categoryId | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| categoryId | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| name | String | Null | Yes |
| address | String | Null | Yes |
| events | EventCreateNestedManyWithoutPlacesInput | No |
| courts | CourtCreateNestedManyWithoutPlaceInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| name | String | Null | Yes |
| address | String | Null | Yes |
| events | EventUncheckedCreateNestedManyWithoutPlacesInput | No |
| courts | CourtUncheckedCreateNestedManyWithoutPlaceInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| name | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| address | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| events | EventUpdateManyWithoutPlacesNestedInput | No |
| courts | CourtUpdateManyWithoutPlaceNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| name | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| address | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| events | EventUncheckedUpdateManyWithoutPlacesNestedInput | No |
| courts | CourtUncheckedUpdateManyWithoutPlaceNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| name | String | Null | Yes |
| address | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| name | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| address | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| name | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| address | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| equals | String | StringFieldRefInput | No |
| in | String | ListStringFieldRefInput | No |
| notIn | String | ListStringFieldRefInput | No |
| lt | String | StringFieldRefInput | No |
| lte | String | StringFieldRefInput | No |
| gt | String | StringFieldRefInput | No |
| gte | String | StringFieldRefInput | No |
| contains | String | StringFieldRefInput | No |
| startsWith | String | StringFieldRefInput | No |
| endsWith | String | StringFieldRefInput | No |
| mode | QueryMode | No |
| not | String | NestedStringFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | Boolean | BooleanFieldRefInput | No |
| not | Boolean | NestedBoolFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | DateTime | DateTimeFieldRefInput | Null | Yes |
| in | DateTime | ListDateTimeFieldRefInput | Null | Yes |
| notIn | DateTime | ListDateTimeFieldRefInput | Null | Yes |
| lt | DateTime | DateTimeFieldRefInput | No |
| lte | DateTime | DateTimeFieldRefInput | No |
| gt | DateTime | DateTimeFieldRefInput | No |
| gte | DateTime | DateTimeFieldRefInput | No |
| not | DateTime | NestedDateTimeNullableFilter | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| equals | Int | IntFieldRefInput | Null | Yes |
| in | Int | ListIntFieldRefInput | Null | Yes |
| notIn | Int | ListIntFieldRefInput | Null | Yes |
| lt | Int | IntFieldRefInput | No |
| lte | Int | IntFieldRefInput | No |
| gt | Int | IntFieldRefInput | No |
| gte | Int | IntFieldRefInput | No |
| not | Int | NestedIntNullableFilter | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| equals | EventType | EnumEventTypeFieldRefInput | No |
| in | EventType[] | ListEnumEventTypeFieldRefInput | No |
| notIn | EventType[] | ListEnumEventTypeFieldRefInput | No |
| not | EventType | NestedEnumEventTypeFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | MatchType | EnumMatchTypeFieldRefInput | No |
| in | MatchType[] | ListEnumMatchTypeFieldRefInput | No |
| notIn | MatchType[] | ListEnumMatchTypeFieldRefInput | No |
| not | MatchType | NestedEnumMatchTypeFilter | No |
| Name | Type | Nullable |
|---|---|---|
| every | CategoryWhereInput | No |
| some | CategoryWhereInput | No |
| none | CategoryWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| every | PlayerWhereInput | No |
| some | PlayerWhereInput | No |
| none | PlayerWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| every | MatchWhereInput | No |
| some | MatchWhereInput | No |
| none | MatchWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| every | PlaceWhereInput | No |
| some | PlaceWhereInput | No |
| none | PlaceWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| every | EventRequestWhereInput | No |
| some | EventRequestWhereInput | No |
| none | EventRequestWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| every | EventDoubleWhereInput | No |
| some | EventDoubleWhereInput | No |
| none | EventDoubleWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| every | GameWhereInput | No |
| some | GameWhereInput | No |
| none | GameWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| every | SetWhereInput | No |
| some | SetWhereInput | No |
| none | SetWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| every | MatchDateWhereInput | No |
| some | MatchDateWhereInput | No |
| none | MatchDateWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| every | CourtWhereInput | No |
| some | CourtWhereInput | No |
| none | CourtWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| is | InviteWhereInput | Null | Yes |
| isNot | InviteWhereInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| every | CategoryGroupWhereInput | No |
| some | CategoryGroupWhereInput | No |
| none | CategoryGroupWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| every | EventMatchWhereInput | No |
| some | EventMatchWhereInput | No |
| none | EventMatchWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| sort | SortOrder | No |
| nulls | NullsOrder | No |
| Name | Type | Nullable |
|---|---|---|
| _count | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| _count | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| _count | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| _count | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| _count | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| _count | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| _count | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| _count | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| _count | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| _count | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| _count | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| _count | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| name | SortOrder | No |
| isActive | SortOrder | No |
| isFinished | SortOrder | No |
| startDate | SortOrder | No |
| finishDate | SortOrder | No |
| matchDurationInMinutes | SortOrder | No |
| timeOfFirstMatch | SortOrder | No |
| timeOfLastMatch | SortOrder | No |
| eventType | SortOrder | No |
| matchType | SortOrder | No |
| isGroupMatchesFinished | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| matchDurationInMinutes | SortOrder | No |
| timeOfFirstMatch | SortOrder | No |
| timeOfLastMatch | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| name | SortOrder | No |
| isActive | SortOrder | No |
| isFinished | SortOrder | No |
| startDate | SortOrder | No |
| finishDate | SortOrder | No |
| matchDurationInMinutes | SortOrder | No |
| timeOfFirstMatch | SortOrder | No |
| timeOfLastMatch | SortOrder | No |
| eventType | SortOrder | No |
| matchType | SortOrder | No |
| isGroupMatchesFinished | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| name | SortOrder | No |
| isActive | SortOrder | No |
| isFinished | SortOrder | No |
| startDate | SortOrder | No |
| finishDate | SortOrder | No |
| matchDurationInMinutes | SortOrder | No |
| timeOfFirstMatch | SortOrder | No |
| timeOfLastMatch | SortOrder | No |
| eventType | SortOrder | No |
| matchType | SortOrder | No |
| isGroupMatchesFinished | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| matchDurationInMinutes | SortOrder | No |
| timeOfFirstMatch | SortOrder | No |
| timeOfLastMatch | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| equals | String | StringFieldRefInput | No |
| in | String | ListStringFieldRefInput | No |
| notIn | String | ListStringFieldRefInput | No |
| lt | String | StringFieldRefInput | No |
| lte | String | StringFieldRefInput | No |
| gt | String | StringFieldRefInput | No |
| gte | String | StringFieldRefInput | No |
| contains | String | StringFieldRefInput | No |
| startsWith | String | StringFieldRefInput | No |
| endsWith | String | StringFieldRefInput | No |
| mode | QueryMode | No |
| not | String | NestedStringWithAggregatesFilter | No |
| _count | NestedIntFilter | No |
| _min | NestedStringFilter | No |
| _max | NestedStringFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | Boolean | BooleanFieldRefInput | No |
| not | Boolean | NestedBoolWithAggregatesFilter | No |
| _count | NestedIntFilter | No |
| _min | NestedBoolFilter | No |
| _max | NestedBoolFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | DateTime | DateTimeFieldRefInput | Null | Yes |
| in | DateTime | ListDateTimeFieldRefInput | Null | Yes |
| notIn | DateTime | ListDateTimeFieldRefInput | Null | Yes |
| lt | DateTime | DateTimeFieldRefInput | No |
| lte | DateTime | DateTimeFieldRefInput | No |
| gt | DateTime | DateTimeFieldRefInput | No |
| gte | DateTime | DateTimeFieldRefInput | No |
| not | DateTime | NestedDateTimeNullableWithAggregatesFilter | Null | Yes |
| _count | NestedIntNullableFilter | No |
| _min | NestedDateTimeNullableFilter | No |
| _max | NestedDateTimeNullableFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | Int | IntFieldRefInput | Null | Yes |
| in | Int | ListIntFieldRefInput | Null | Yes |
| notIn | Int | ListIntFieldRefInput | Null | Yes |
| lt | Int | IntFieldRefInput | No |
| lte | Int | IntFieldRefInput | No |
| gt | Int | IntFieldRefInput | No |
| gte | Int | IntFieldRefInput | No |
| not | Int | NestedIntNullableWithAggregatesFilter | Null | Yes |
| _count | NestedIntNullableFilter | No |
| _avg | NestedFloatNullableFilter | No |
| _sum | NestedIntNullableFilter | No |
| _min | NestedIntNullableFilter | No |
| _max | NestedIntNullableFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | EventType | EnumEventTypeFieldRefInput | No |
| in | EventType[] | ListEnumEventTypeFieldRefInput | No |
| notIn | EventType[] | ListEnumEventTypeFieldRefInput | No |
| not | EventType | NestedEnumEventTypeWithAggregatesFilter | No |
| _count | NestedIntFilter | No |
| _min | NestedEnumEventTypeFilter | No |
| _max | NestedEnumEventTypeFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | MatchType | EnumMatchTypeFieldRefInput | No |
| in | MatchType[] | ListEnumMatchTypeFieldRefInput | No |
| notIn | MatchType[] | ListEnumMatchTypeFieldRefInput | No |
| not | MatchType | NestedEnumMatchTypeWithAggregatesFilter | No |
| _count | NestedIntFilter | No |
| _min | NestedEnumMatchTypeFilter | No |
| _max | NestedEnumMatchTypeFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | String | StringFieldRefInput | Null | Yes |
| in | String | ListStringFieldRefInput | Null | Yes |
| notIn | String | ListStringFieldRefInput | Null | Yes |
| lt | String | StringFieldRefInput | No |
| lte | String | StringFieldRefInput | No |
| gt | String | StringFieldRefInput | No |
| gte | String | StringFieldRefInput | No |
| contains | String | StringFieldRefInput | No |
| startsWith | String | StringFieldRefInput | No |
| endsWith | String | StringFieldRefInput | No |
| mode | QueryMode | No |
| not | String | NestedStringNullableFilter | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| is | CategoryWhereInput | No |
| isNot | CategoryWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| every | DoublesGroupWhereInput | No |
| some | DoublesGroupWhereInput | No |
| none | DoublesGroupWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| is | EventWhereInput | Null | Yes |
| isNot | EventWhereInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| every | MatchesReferencedWhereInput | No |
| some | MatchesReferencedWhereInput | No |
| none | MatchesReferencedWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| is | DoubleWhereInput | Null | Yes |
| isNot | DoubleWhereInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| _count | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| _count | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| eventId | String | No |
| categoryId | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| categoryId | SortOrder | No |
| eventId | SortOrder | No |
| firstPlaceId | SortOrder | No |
| secondPlaceId | SortOrder | No |
| groupsStageFinished | SortOrder | No |
| categoryFinished | SortOrder | No |
| isFinalMatchesCreated | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| categoryId | SortOrder | No |
| eventId | SortOrder | No |
| firstPlaceId | SortOrder | No |
| secondPlaceId | SortOrder | No |
| groupsStageFinished | SortOrder | No |
| categoryFinished | SortOrder | No |
| isFinalMatchesCreated | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| categoryId | SortOrder | No |
| eventId | SortOrder | No |
| firstPlaceId | SortOrder | No |
| secondPlaceId | SortOrder | No |
| groupsStageFinished | SortOrder | No |
| categoryFinished | SortOrder | No |
| isFinalMatchesCreated | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| equals | String | StringFieldRefInput | Null | Yes |
| in | String | ListStringFieldRefInput | Null | Yes |
| notIn | String | ListStringFieldRefInput | Null | Yes |
| lt | String | StringFieldRefInput | No |
| lte | String | StringFieldRefInput | No |
| gt | String | StringFieldRefInput | No |
| gte | String | StringFieldRefInput | No |
| contains | String | StringFieldRefInput | No |
| startsWith | String | StringFieldRefInput | No |
| endsWith | String | StringFieldRefInput | No |
| mode | QueryMode | No |
| not | String | NestedStringNullableWithAggregatesFilter | Null | Yes |
| _count | NestedIntNullableFilter | No |
| _min | NestedStringNullableFilter | No |
| _max | NestedStringNullableFilter | No |
| Name | Type | Nullable |
|---|---|---|
| is | CategoryGroupWhereInput | Null | Yes |
| isNot | CategoryGroupWhereInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| categoryGroupId | String | No |
| key | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| key | SortOrder | No |
| categoryGroupId | SortOrder | No |
| firstPlaceDoublesId | SortOrder | No |
| secondPlaceDoublesId | SortOrder | No |
| groupFinished | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| key | SortOrder | No |
| categoryGroupId | SortOrder | No |
| firstPlaceDoublesId | SortOrder | No |
| secondPlaceDoublesId | SortOrder | No |
| groupFinished | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| key | SortOrder | No |
| categoryGroupId | SortOrder | No |
| firstPlaceDoublesId | SortOrder | No |
| secondPlaceDoublesId | SortOrder | No |
| groupFinished | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| equals | RequestStatus | EnumRequestStatusFieldRefInput | No |
| in | RequestStatus[] | ListEnumRequestStatusFieldRefInput | No |
| notIn | RequestStatus[] | ListEnumRequestStatusFieldRefInput | No |
| not | RequestStatus | NestedEnumRequestStatusFilter | No |
| Name | Type | Nullable |
|---|---|---|
| is | EventWhereInput | No |
| isNot | EventWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| is | DoubleWhereInput | No |
| isNot | DoubleWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| eventId | String | No |
| doubleId | String | No |
| categoryId | String | No |
| Name | Type | Nullable |
|---|---|---|
| eventId | SortOrder | No |
| doubleId | SortOrder | No |
| categoryId | SortOrder | No |
| status | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| eventId | SortOrder | No |
| doubleId | SortOrder | No |
| categoryId | SortOrder | No |
| status | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| eventId | SortOrder | No |
| doubleId | SortOrder | No |
| categoryId | SortOrder | No |
| status | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| equals | RequestStatus | EnumRequestStatusFieldRefInput | No |
| in | RequestStatus[] | ListEnumRequestStatusFieldRefInput | No |
| notIn | RequestStatus[] | ListEnumRequestStatusFieldRefInput | No |
| not | RequestStatus | NestedEnumRequestStatusWithAggregatesFilter | No |
| _count | NestedIntFilter | No |
| _min | NestedEnumRequestStatusFilter | No |
| _max | NestedEnumRequestStatusFilter | No |
| Name | Type | Nullable |
|---|---|---|
| every | EventWhereInput | No |
| some | EventWhereInput | No |
| none | EventWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| is | PlaceWhereInput | No |
| isNot | PlaceWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| _count | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| name | String | No |
| placeId | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| name | SortOrder | No |
| isAvailable | SortOrder | No |
| placeId | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| name | SortOrder | No |
| isAvailable | SortOrder | No |
| placeId | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| name | SortOrder | No |
| isAvailable | SortOrder | No |
| placeId | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| is | MatchDateWhereInput | Null | Yes |
| isNot | MatchDateWhereInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| is | DoublesGroupWhereInput | Null | Yes |
| isNot | DoublesGroupWhereInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| eventId | String | No |
| doubleId | String | No |
| categoryId | String | No |
| Name | Type | Nullable |
|---|---|---|
| eventId | SortOrder | No |
| doubleId | SortOrder | No |
| categoryId | SortOrder | No |
| atRestId | SortOrder | No |
| doublesGroupId | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| eventId | SortOrder | No |
| doubleId | SortOrder | No |
| categoryId | SortOrder | No |
| atRestId | SortOrder | No |
| doublesGroupId | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| eventId | SortOrder | No |
| doubleId | SortOrder | No |
| categoryId | SortOrder | No |
| atRestId | SortOrder | No |
| doublesGroupId | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| equals | Int | IntFieldRefInput | No |
| in | Int | ListIntFieldRefInput | No |
| notIn | Int | ListIntFieldRefInput | No |
| lt | Int | IntFieldRefInput | No |
| lte | Int | IntFieldRefInput | No |
| gt | Int | IntFieldRefInput | No |
| gte | Int | IntFieldRefInput | No |
| not | Int | NestedIntFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | CatType | EnumCatTypeFieldRefInput | No |
| in | CatType[] | ListEnumCatTypeFieldRefInput | No |
| notIn | CatType[] | ListEnumCatTypeFieldRefInput | No |
| not | CatType | NestedEnumCatTypeFilter | No |
| Name | Type | Nullable |
|---|---|---|
| every | DoubleWhereInput | No |
| some | DoubleWhereInput | No |
| none | DoubleWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| _count | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| level | Int | No |
| type | CatType | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| level | SortOrder | No |
| type | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| level | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| level | SortOrder | No |
| type | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| level | SortOrder | No |
| type | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| level | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| equals | Int | IntFieldRefInput | No |
| in | Int | ListIntFieldRefInput | No |
| notIn | Int | ListIntFieldRefInput | No |
| lt | Int | IntFieldRefInput | No |
| lte | Int | IntFieldRefInput | No |
| gt | Int | IntFieldRefInput | No |
| gte | Int | IntFieldRefInput | No |
| not | Int | NestedIntWithAggregatesFilter | No |
| _count | NestedIntFilter | No |
| _avg | NestedFloatFilter | No |
| _sum | NestedIntFilter | No |
| _min | NestedIntFilter | No |
| _max | NestedIntFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | CatType | EnumCatTypeFieldRefInput | No |
| in | CatType[] | ListEnumCatTypeFieldRefInput | No |
| notIn | CatType[] | ListEnumCatTypeFieldRefInput | No |
| not | CatType | NestedEnumCatTypeWithAggregatesFilter | No |
| _count | NestedIntFilter | No |
| _min | NestedEnumCatTypeFilter | No |
| _max | NestedEnumCatTypeFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | EventMatchType | EnumEventMatchTypeFieldRefInput | No |
| in | EventMatchType[] | ListEnumEventMatchTypeFieldRefInput | No |
| notIn | EventMatchType[] | ListEnumEventMatchTypeFieldRefInput | No |
| not | EventMatchType | NestedEnumEventMatchTypeFilter | No |
| Name | Type | Nullable |
|---|---|---|
| is | MatchWhereInput | No |
| isNot | MatchWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| eventId | String | No |
| matchId | String | No |
| Name | Type | Nullable |
|---|---|---|
| number | SortOrder | No |
| type | SortOrder | No |
| eventId | SortOrder | No |
| matchId | SortOrder | No |
| categoryGroupId | SortOrder | No |
| doublesGroupId | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| number | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| number | SortOrder | No |
| type | SortOrder | No |
| eventId | SortOrder | No |
| matchId | SortOrder | No |
| categoryGroupId | SortOrder | No |
| doublesGroupId | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| number | SortOrder | No |
| type | SortOrder | No |
| eventId | SortOrder | No |
| matchId | SortOrder | No |
| categoryGroupId | SortOrder | No |
| doublesGroupId | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| number | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| equals | EventMatchType | EnumEventMatchTypeFieldRefInput | No |
| in | EventMatchType[] | ListEnumEventMatchTypeFieldRefInput | No |
| notIn | EventMatchType[] | ListEnumEventMatchTypeFieldRefInput | No |
| not | EventMatchType | NestedEnumEventMatchTypeWithAggregatesFilter | No |
| _count | NestedIntFilter | No |
| _min | NestedEnumEventMatchTypeFilter | No |
| _max | NestedEnumEventMatchTypeFilter | No |
| Name | Type | Nullable |
|---|---|---|
| is | MatchWhereInput | Null | Yes |
| isNot | MatchWhereInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| matchAId | String | No |
| matchBId | String | No |
| refMatchId | String | No |
| Name | Type | Nullable |
|---|---|---|
| matchAId | SortOrder | No |
| matchBId | SortOrder | No |
| refMatchId | SortOrder | No |
| categoryGroupId | SortOrder | No |
| isUpdated | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| matchAId | SortOrder | No |
| matchBId | SortOrder | No |
| refMatchId | SortOrder | No |
| categoryGroupId | SortOrder | No |
| isUpdated | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| matchAId | SortOrder | No |
| matchBId | SortOrder | No |
| refMatchId | SortOrder | No |
| categoryGroupId | SortOrder | No |
| isUpdated | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| is | CategoryWhereInput | Null | Yes |
| isNot | CategoryWhereInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| is | CourtWhereInput | Null | Yes |
| isNot | CourtWhereInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| is | EventMatchWhereInput | Null | Yes |
| isNot | EventMatchWhereInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| is | MatchesReferencedWhereInput | Null | Yes |
| isNot | MatchesReferencedWhereInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| isFinished | SortOrder | No |
| categoryId | SortOrder | No |
| winnerDoublesId | SortOrder | No |
| eventId | SortOrder | No |
| type | SortOrder | No |
| courtId | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| isFinished | SortOrder | No |
| categoryId | SortOrder | No |
| winnerDoublesId | SortOrder | No |
| eventId | SortOrder | No |
| type | SortOrder | No |
| courtId | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| isFinished | SortOrder | No |
| categoryId | SortOrder | No |
| winnerDoublesId | SortOrder | No |
| eventId | SortOrder | No |
| type | SortOrder | No |
| courtId | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| equals | DateTime | DateTimeFieldRefInput | No |
| in | DateTime | ListDateTimeFieldRefInput | No |
| notIn | DateTime | ListDateTimeFieldRefInput | No |
| lt | DateTime | DateTimeFieldRefInput | No |
| lte | DateTime | DateTimeFieldRefInput | No |
| gt | DateTime | DateTimeFieldRefInput | No |
| gte | DateTime | DateTimeFieldRefInput | No |
| not | DateTime | NestedDateTimeFilter | No |
| Name | Type | Nullable |
|---|---|---|
| is | CourtWhereInput | No |
| isNot | CourtWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| eventId | String | No |
| start | DateTime | No |
| finish | DateTime | No |
| courtId | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| eventId | SortOrder | No |
| matchId | SortOrder | No |
| start | SortOrder | No |
| finish | SortOrder | No |
| courtId | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| eventId | SortOrder | No |
| matchId | SortOrder | No |
| start | SortOrder | No |
| finish | SortOrder | No |
| courtId | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| eventId | SortOrder | No |
| matchId | SortOrder | No |
| start | SortOrder | No |
| finish | SortOrder | No |
| courtId | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| equals | DateTime | DateTimeFieldRefInput | No |
| in | DateTime | ListDateTimeFieldRefInput | No |
| notIn | DateTime | ListDateTimeFieldRefInput | No |
| lt | DateTime | DateTimeFieldRefInput | No |
| lte | DateTime | DateTimeFieldRefInput | No |
| gt | DateTime | DateTimeFieldRefInput | No |
| gte | DateTime | DateTimeFieldRefInput | No |
| not | DateTime | NestedDateTimeWithAggregatesFilter | No |
| _count | NestedIntFilter | No |
| _min | NestedDateTimeFilter | No |
| _max | NestedDateTimeFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | SetType | EnumSetTypeFieldRefInput | No |
| in | SetType[] | ListEnumSetTypeFieldRefInput | No |
| notIn | SetType[] | ListEnumSetTypeFieldRefInput | No |
| not | SetType | NestedEnumSetTypeFilter | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| type | SortOrder | No |
| number | SortOrder | No |
| setWinnerId | SortOrder | No |
| result | SortOrder | No |
| matchId | SortOrder | No |
| isFinished | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| number | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| type | SortOrder | No |
| number | SortOrder | No |
| setWinnerId | SortOrder | No |
| result | SortOrder | No |
| matchId | SortOrder | No |
| isFinished | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| type | SortOrder | No |
| number | SortOrder | No |
| setWinnerId | SortOrder | No |
| result | SortOrder | No |
| matchId | SortOrder | No |
| isFinished | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| number | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| equals | SetType | EnumSetTypeFieldRefInput | No |
| in | SetType[] | ListEnumSetTypeFieldRefInput | No |
| notIn | SetType[] | ListEnumSetTypeFieldRefInput | No |
| not | SetType | NestedEnumSetTypeWithAggregatesFilter | No |
| _count | NestedIntFilter | No |
| _min | NestedEnumSetTypeFilter | No |
| _max | NestedEnumSetTypeFilter | No |
| Name | Type | Nullable |
|---|---|---|
| is | SetWhereInput | No |
| isNot | SetWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| setId | SortOrder | No |
| winnerId | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| setId | SortOrder | No |
| winnerId | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| setId | SortOrder | No |
| winnerId | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| equals | Role | EnumRoleFieldRefInput | No |
| in | Role[] | ListEnumRoleFieldRefInput | No |
| notIn | Role[] | ListEnumRoleFieldRefInput | No |
| not | Role | NestedEnumRoleFilter | No |
| Name | Type | Nullable |
|---|---|---|
| is | PlayerWhereInput | Null | Yes |
| isNot | PlayerWhereInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| firstName | SortOrder | No |
| lastName | SortOrder | No |
| SortOrder | No | |
| password | SortOrder | No |
| dob | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| playerId | SortOrder | No |
| role | SortOrder | No |
| hashedRt | SortOrder | No |
| profileImage | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| firstName | SortOrder | No |
| lastName | SortOrder | No |
| SortOrder | No | |
| password | SortOrder | No |
| dob | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| playerId | SortOrder | No |
| role | SortOrder | No |
| hashedRt | SortOrder | No |
| profileImage | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| firstName | SortOrder | No |
| lastName | SortOrder | No |
| SortOrder | No | |
| password | SortOrder | No |
| dob | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| playerId | SortOrder | No |
| role | SortOrder | No |
| hashedRt | SortOrder | No |
| profileImage | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| equals | Role | EnumRoleFieldRefInput | No |
| in | Role[] | ListEnumRoleFieldRefInput | No |
| notIn | Role[] | ListEnumRoleFieldRefInput | No |
| not | Role | NestedEnumRoleWithAggregatesFilter | No |
| _count | NestedIntFilter | No |
| _min | NestedEnumRoleFilter | No |
| _max | NestedEnumRoleFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | InviteType | EnumInviteTypeFieldRefInput | No |
| in | InviteType[] | ListEnumInviteTypeFieldRefInput | No |
| notIn | InviteType[] | ListEnumInviteTypeFieldRefInput | No |
| not | InviteType | NestedEnumInviteTypeFilter | No |
| Name | Type | Nullable |
|---|---|---|
| inviterId | String | No |
| invitedId | String | No |
| inviteType | InviteType | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| inviteType | SortOrder | No |
| doublesId | SortOrder | No |
| eventId | SortOrder | No |
| matchId | SortOrder | No |
| inviterId | SortOrder | No |
| invitedId | SortOrder | No |
| createdAt | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| inviteType | SortOrder | No |
| doublesId | SortOrder | No |
| eventId | SortOrder | No |
| matchId | SortOrder | No |
| inviterId | SortOrder | No |
| invitedId | SortOrder | No |
| createdAt | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| inviteType | SortOrder | No |
| doublesId | SortOrder | No |
| eventId | SortOrder | No |
| matchId | SortOrder | No |
| inviterId | SortOrder | No |
| invitedId | SortOrder | No |
| createdAt | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| equals | InviteType | EnumInviteTypeFieldRefInput | No |
| in | InviteType[] | ListEnumInviteTypeFieldRefInput | No |
| notIn | InviteType[] | ListEnumInviteTypeFieldRefInput | No |
| not | InviteType | NestedEnumInviteTypeWithAggregatesFilter | No |
| _count | NestedIntFilter | No |
| _min | NestedEnumInviteTypeFilter | No |
| _max | NestedEnumInviteTypeFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | PlayerPosition | EnumPlayerPositionFieldRefInput | Null | Yes |
| in | PlayerPosition[] | ListEnumPlayerPositionFieldRefInput | Null | Yes |
| notIn | PlayerPosition[] | ListEnumPlayerPositionFieldRefInput | Null | Yes |
| not | PlayerPosition | NestedEnumPlayerPositionNullableFilter | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| is | UserWhereInput | Null | Yes |
| isNot | UserWhereInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| every | InviteWhereInput | No |
| some | InviteWhereInput | No |
| none | InviteWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| _count | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| firstName | SortOrder | No |
| lastName | SortOrder | No |
| categoryId | SortOrder | No |
| position | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| firstName | SortOrder | No |
| lastName | SortOrder | No |
| categoryId | SortOrder | No |
| position | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| firstName | SortOrder | No |
| lastName | SortOrder | No |
| categoryId | SortOrder | No |
| position | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| equals | PlayerPosition | EnumPlayerPositionFieldRefInput | Null | Yes |
| in | PlayerPosition[] | ListEnumPlayerPositionFieldRefInput | Null | Yes |
| notIn | PlayerPosition[] | ListEnumPlayerPositionFieldRefInput | Null | Yes |
| not | PlayerPosition | NestedEnumPlayerPositionNullableWithAggregatesFilter | Null | Yes |
| _count | NestedIntNullableFilter | No |
| _min | NestedEnumPlayerPositionNullableFilter | No |
| _max | NestedEnumPlayerPositionNullableFilter | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| name | SortOrder | No |
| address | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| name | SortOrder | No |
| address | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| name | SortOrder | No |
| address | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| create | CategoryCreateWithoutEventsInput | CategoryCreateWithoutEventsInput[] | CategoryUncheckedCreateWithoutEventsInput | CategoryUncheckedCreateWithoutEventsInput[] | No |
| connectOrCreate | CategoryCreateOrConnectWithoutEventsInput | CategoryCreateOrConnectWithoutEventsInput[] | No |
| connect | CategoryWhereUniqueInput | CategoryWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | PlayerCreateWithoutEventsInput | PlayerCreateWithoutEventsInput[] | PlayerUncheckedCreateWithoutEventsInput | PlayerUncheckedCreateWithoutEventsInput[] | No |
| connectOrCreate | PlayerCreateOrConnectWithoutEventsInput | PlayerCreateOrConnectWithoutEventsInput[] | No |
| connect | PlayerWhereUniqueInput | PlayerWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | MatchCreateWithoutEventInput | MatchCreateWithoutEventInput[] | MatchUncheckedCreateWithoutEventInput | MatchUncheckedCreateWithoutEventInput[] | No |
| connectOrCreate | MatchCreateOrConnectWithoutEventInput | MatchCreateOrConnectWithoutEventInput[] | No |
| createMany | MatchCreateManyEventInputEnvelope | No |
| connect | MatchWhereUniqueInput | MatchWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | PlaceCreateWithoutEventsInput | PlaceCreateWithoutEventsInput[] | PlaceUncheckedCreateWithoutEventsInput | PlaceUncheckedCreateWithoutEventsInput[] | No |
| connectOrCreate | PlaceCreateOrConnectWithoutEventsInput | PlaceCreateOrConnectWithoutEventsInput[] | No |
| connect | PlaceWhereUniqueInput | PlaceWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | EventRequestCreateWithoutEventInput | EventRequestCreateWithoutEventInput[] | EventRequestUncheckedCreateWithoutEventInput | EventRequestUncheckedCreateWithoutEventInput[] | No |
| connectOrCreate | EventRequestCreateOrConnectWithoutEventInput | EventRequestCreateOrConnectWithoutEventInput[] | No |
| createMany | EventRequestCreateManyEventInputEnvelope | No |
| connect | EventRequestWhereUniqueInput | EventRequestWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | EventDoubleCreateWithoutEventInput | EventDoubleCreateWithoutEventInput[] | EventDoubleUncheckedCreateWithoutEventInput | EventDoubleUncheckedCreateWithoutEventInput[] | No |
| connectOrCreate | EventDoubleCreateOrConnectWithoutEventInput | EventDoubleCreateOrConnectWithoutEventInput[] | No |
| createMany | EventDoubleCreateManyEventInputEnvelope | No |
| connect | EventDoubleWhereUniqueInput | EventDoubleWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | GameCreateWithoutEventsInput | GameCreateWithoutEventsInput[] | GameUncheckedCreateWithoutEventsInput | GameUncheckedCreateWithoutEventsInput[] | No |
| connectOrCreate | GameCreateOrConnectWithoutEventsInput | GameCreateOrConnectWithoutEventsInput[] | No |
| connect | GameWhereUniqueInput | GameWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | SetCreateWithoutEventsInput | SetCreateWithoutEventsInput[] | SetUncheckedCreateWithoutEventsInput | SetUncheckedCreateWithoutEventsInput[] | No |
| connectOrCreate | SetCreateOrConnectWithoutEventsInput | SetCreateOrConnectWithoutEventsInput[] | No |
| connect | SetWhereUniqueInput | SetWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | MatchDateCreateWithoutEventInput | MatchDateCreateWithoutEventInput[] | MatchDateUncheckedCreateWithoutEventInput | MatchDateUncheckedCreateWithoutEventInput[] | No |
| connectOrCreate | MatchDateCreateOrConnectWithoutEventInput | MatchDateCreateOrConnectWithoutEventInput[] | No |
| createMany | MatchDateCreateManyEventInputEnvelope | No |
| connect | MatchDateWhereUniqueInput | MatchDateWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | CourtCreateWithoutEventsInput | CourtCreateWithoutEventsInput[] | CourtUncheckedCreateWithoutEventsInput | CourtUncheckedCreateWithoutEventsInput[] | No |
| connectOrCreate | CourtCreateOrConnectWithoutEventsInput | CourtCreateOrConnectWithoutEventsInput[] | No |
| connect | CourtWhereUniqueInput | CourtWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | InviteCreateWithoutEventInput | InviteUncheckedCreateWithoutEventInput | No |
| connectOrCreate | InviteCreateOrConnectWithoutEventInput | No |
| connect | InviteWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | CategoryGroupCreateWithoutEventInput | CategoryGroupCreateWithoutEventInput[] | CategoryGroupUncheckedCreateWithoutEventInput | CategoryGroupUncheckedCreateWithoutEventInput[] | No |
| connectOrCreate | CategoryGroupCreateOrConnectWithoutEventInput | CategoryGroupCreateOrConnectWithoutEventInput[] | No |
| createMany | CategoryGroupCreateManyEventInputEnvelope | No |
| connect | CategoryGroupWhereUniqueInput | CategoryGroupWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | EventMatchCreateWithoutEventInput | EventMatchCreateWithoutEventInput[] | EventMatchUncheckedCreateWithoutEventInput | EventMatchUncheckedCreateWithoutEventInput[] | No |
| connectOrCreate | EventMatchCreateOrConnectWithoutEventInput | EventMatchCreateOrConnectWithoutEventInput[] | No |
| createMany | EventMatchCreateManyEventInputEnvelope | No |
| connect | EventMatchWhereUniqueInput | EventMatchWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | CategoryCreateWithoutEventsInput | CategoryCreateWithoutEventsInput[] | CategoryUncheckedCreateWithoutEventsInput | CategoryUncheckedCreateWithoutEventsInput[] | No |
| connectOrCreate | CategoryCreateOrConnectWithoutEventsInput | CategoryCreateOrConnectWithoutEventsInput[] | No |
| connect | CategoryWhereUniqueInput | CategoryWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | PlayerCreateWithoutEventsInput | PlayerCreateWithoutEventsInput[] | PlayerUncheckedCreateWithoutEventsInput | PlayerUncheckedCreateWithoutEventsInput[] | No |
| connectOrCreate | PlayerCreateOrConnectWithoutEventsInput | PlayerCreateOrConnectWithoutEventsInput[] | No |
| connect | PlayerWhereUniqueInput | PlayerWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | MatchCreateWithoutEventInput | MatchCreateWithoutEventInput[] | MatchUncheckedCreateWithoutEventInput | MatchUncheckedCreateWithoutEventInput[] | No |
| connectOrCreate | MatchCreateOrConnectWithoutEventInput | MatchCreateOrConnectWithoutEventInput[] | No |
| createMany | MatchCreateManyEventInputEnvelope | No |
| connect | MatchWhereUniqueInput | MatchWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | PlaceCreateWithoutEventsInput | PlaceCreateWithoutEventsInput[] | PlaceUncheckedCreateWithoutEventsInput | PlaceUncheckedCreateWithoutEventsInput[] | No |
| connectOrCreate | PlaceCreateOrConnectWithoutEventsInput | PlaceCreateOrConnectWithoutEventsInput[] | No |
| connect | PlaceWhereUniqueInput | PlaceWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | EventRequestCreateWithoutEventInput | EventRequestCreateWithoutEventInput[] | EventRequestUncheckedCreateWithoutEventInput | EventRequestUncheckedCreateWithoutEventInput[] | No |
| connectOrCreate | EventRequestCreateOrConnectWithoutEventInput | EventRequestCreateOrConnectWithoutEventInput[] | No |
| createMany | EventRequestCreateManyEventInputEnvelope | No |
| connect | EventRequestWhereUniqueInput | EventRequestWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | EventDoubleCreateWithoutEventInput | EventDoubleCreateWithoutEventInput[] | EventDoubleUncheckedCreateWithoutEventInput | EventDoubleUncheckedCreateWithoutEventInput[] | No |
| connectOrCreate | EventDoubleCreateOrConnectWithoutEventInput | EventDoubleCreateOrConnectWithoutEventInput[] | No |
| createMany | EventDoubleCreateManyEventInputEnvelope | No |
| connect | EventDoubleWhereUniqueInput | EventDoubleWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | GameCreateWithoutEventsInput | GameCreateWithoutEventsInput[] | GameUncheckedCreateWithoutEventsInput | GameUncheckedCreateWithoutEventsInput[] | No |
| connectOrCreate | GameCreateOrConnectWithoutEventsInput | GameCreateOrConnectWithoutEventsInput[] | No |
| connect | GameWhereUniqueInput | GameWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | SetCreateWithoutEventsInput | SetCreateWithoutEventsInput[] | SetUncheckedCreateWithoutEventsInput | SetUncheckedCreateWithoutEventsInput[] | No |
| connectOrCreate | SetCreateOrConnectWithoutEventsInput | SetCreateOrConnectWithoutEventsInput[] | No |
| connect | SetWhereUniqueInput | SetWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | MatchDateCreateWithoutEventInput | MatchDateCreateWithoutEventInput[] | MatchDateUncheckedCreateWithoutEventInput | MatchDateUncheckedCreateWithoutEventInput[] | No |
| connectOrCreate | MatchDateCreateOrConnectWithoutEventInput | MatchDateCreateOrConnectWithoutEventInput[] | No |
| createMany | MatchDateCreateManyEventInputEnvelope | No |
| connect | MatchDateWhereUniqueInput | MatchDateWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | CourtCreateWithoutEventsInput | CourtCreateWithoutEventsInput[] | CourtUncheckedCreateWithoutEventsInput | CourtUncheckedCreateWithoutEventsInput[] | No |
| connectOrCreate | CourtCreateOrConnectWithoutEventsInput | CourtCreateOrConnectWithoutEventsInput[] | No |
| connect | CourtWhereUniqueInput | CourtWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | InviteCreateWithoutEventInput | InviteUncheckedCreateWithoutEventInput | No |
| connectOrCreate | InviteCreateOrConnectWithoutEventInput | No |
| connect | InviteWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | CategoryGroupCreateWithoutEventInput | CategoryGroupCreateWithoutEventInput[] | CategoryGroupUncheckedCreateWithoutEventInput | CategoryGroupUncheckedCreateWithoutEventInput[] | No |
| connectOrCreate | CategoryGroupCreateOrConnectWithoutEventInput | CategoryGroupCreateOrConnectWithoutEventInput[] | No |
| createMany | CategoryGroupCreateManyEventInputEnvelope | No |
| connect | CategoryGroupWhereUniqueInput | CategoryGroupWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | EventMatchCreateWithoutEventInput | EventMatchCreateWithoutEventInput[] | EventMatchUncheckedCreateWithoutEventInput | EventMatchUncheckedCreateWithoutEventInput[] | No |
| connectOrCreate | EventMatchCreateOrConnectWithoutEventInput | EventMatchCreateOrConnectWithoutEventInput[] | No |
| createMany | EventMatchCreateManyEventInputEnvelope | No |
| connect | EventMatchWhereUniqueInput | EventMatchWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| set | String | No |
| Name | Type | Nullable |
|---|---|---|
| set | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| set | DateTime | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| set | Int | Null | Yes |
| increment | Int | No |
| decrement | Int | No |
| multiply | Int | No |
| divide | Int | No |
| Name | Type | Nullable |
|---|---|---|
| set | EventType | No |
| Name | Type | Nullable |
|---|---|---|
| set | MatchType | No |
| Name | Type | Nullable |
|---|---|---|
| create | PlayerCreateWithoutEventsInput | PlayerCreateWithoutEventsInput[] | PlayerUncheckedCreateWithoutEventsInput | PlayerUncheckedCreateWithoutEventsInput[] | No |
| connectOrCreate | PlayerCreateOrConnectWithoutEventsInput | PlayerCreateOrConnectWithoutEventsInput[] | No |
| upsert | PlayerUpsertWithWhereUniqueWithoutEventsInput | PlayerUpsertWithWhereUniqueWithoutEventsInput[] | No |
| set | PlayerWhereUniqueInput | PlayerWhereUniqueInput[] | No |
| disconnect | PlayerWhereUniqueInput | PlayerWhereUniqueInput[] | No |
| delete | PlayerWhereUniqueInput | PlayerWhereUniqueInput[] | No |
| connect | PlayerWhereUniqueInput | PlayerWhereUniqueInput[] | No |
| update | PlayerUpdateWithWhereUniqueWithoutEventsInput | PlayerUpdateWithWhereUniqueWithoutEventsInput[] | No |
| updateMany | PlayerUpdateManyWithWhereWithoutEventsInput | PlayerUpdateManyWithWhereWithoutEventsInput[] | No |
| deleteMany | PlayerScalarWhereInput | PlayerScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | MatchCreateWithoutEventInput | MatchCreateWithoutEventInput[] | MatchUncheckedCreateWithoutEventInput | MatchUncheckedCreateWithoutEventInput[] | No |
| connectOrCreate | MatchCreateOrConnectWithoutEventInput | MatchCreateOrConnectWithoutEventInput[] | No |
| upsert | MatchUpsertWithWhereUniqueWithoutEventInput | MatchUpsertWithWhereUniqueWithoutEventInput[] | No |
| createMany | MatchCreateManyEventInputEnvelope | No |
| set | MatchWhereUniqueInput | MatchWhereUniqueInput[] | No |
| disconnect | MatchWhereUniqueInput | MatchWhereUniqueInput[] | No |
| delete | MatchWhereUniqueInput | MatchWhereUniqueInput[] | No |
| connect | MatchWhereUniqueInput | MatchWhereUniqueInput[] | No |
| update | MatchUpdateWithWhereUniqueWithoutEventInput | MatchUpdateWithWhereUniqueWithoutEventInput[] | No |
| updateMany | MatchUpdateManyWithWhereWithoutEventInput | MatchUpdateManyWithWhereWithoutEventInput[] | No |
| deleteMany | MatchScalarWhereInput | MatchScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | PlaceCreateWithoutEventsInput | PlaceCreateWithoutEventsInput[] | PlaceUncheckedCreateWithoutEventsInput | PlaceUncheckedCreateWithoutEventsInput[] | No |
| connectOrCreate | PlaceCreateOrConnectWithoutEventsInput | PlaceCreateOrConnectWithoutEventsInput[] | No |
| upsert | PlaceUpsertWithWhereUniqueWithoutEventsInput | PlaceUpsertWithWhereUniqueWithoutEventsInput[] | No |
| set | PlaceWhereUniqueInput | PlaceWhereUniqueInput[] | No |
| disconnect | PlaceWhereUniqueInput | PlaceWhereUniqueInput[] | No |
| delete | PlaceWhereUniqueInput | PlaceWhereUniqueInput[] | No |
| connect | PlaceWhereUniqueInput | PlaceWhereUniqueInput[] | No |
| update | PlaceUpdateWithWhereUniqueWithoutEventsInput | PlaceUpdateWithWhereUniqueWithoutEventsInput[] | No |
| updateMany | PlaceUpdateManyWithWhereWithoutEventsInput | PlaceUpdateManyWithWhereWithoutEventsInput[] | No |
| deleteMany | PlaceScalarWhereInput | PlaceScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | GameCreateWithoutEventsInput | GameCreateWithoutEventsInput[] | GameUncheckedCreateWithoutEventsInput | GameUncheckedCreateWithoutEventsInput[] | No |
| connectOrCreate | GameCreateOrConnectWithoutEventsInput | GameCreateOrConnectWithoutEventsInput[] | No |
| upsert | GameUpsertWithWhereUniqueWithoutEventsInput | GameUpsertWithWhereUniqueWithoutEventsInput[] | No |
| set | GameWhereUniqueInput | GameWhereUniqueInput[] | No |
| disconnect | GameWhereUniqueInput | GameWhereUniqueInput[] | No |
| delete | GameWhereUniqueInput | GameWhereUniqueInput[] | No |
| connect | GameWhereUniqueInput | GameWhereUniqueInput[] | No |
| update | GameUpdateWithWhereUniqueWithoutEventsInput | GameUpdateWithWhereUniqueWithoutEventsInput[] | No |
| updateMany | GameUpdateManyWithWhereWithoutEventsInput | GameUpdateManyWithWhereWithoutEventsInput[] | No |
| deleteMany | GameScalarWhereInput | GameScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | SetCreateWithoutEventsInput | SetCreateWithoutEventsInput[] | SetUncheckedCreateWithoutEventsInput | SetUncheckedCreateWithoutEventsInput[] | No |
| connectOrCreate | SetCreateOrConnectWithoutEventsInput | SetCreateOrConnectWithoutEventsInput[] | No |
| upsert | SetUpsertWithWhereUniqueWithoutEventsInput | SetUpsertWithWhereUniqueWithoutEventsInput[] | No |
| set | SetWhereUniqueInput | SetWhereUniqueInput[] | No |
| disconnect | SetWhereUniqueInput | SetWhereUniqueInput[] | No |
| delete | SetWhereUniqueInput | SetWhereUniqueInput[] | No |
| connect | SetWhereUniqueInput | SetWhereUniqueInput[] | No |
| update | SetUpdateWithWhereUniqueWithoutEventsInput | SetUpdateWithWhereUniqueWithoutEventsInput[] | No |
| updateMany | SetUpdateManyWithWhereWithoutEventsInput | SetUpdateManyWithWhereWithoutEventsInput[] | No |
| deleteMany | SetScalarWhereInput | SetScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | CourtCreateWithoutEventsInput | CourtCreateWithoutEventsInput[] | CourtUncheckedCreateWithoutEventsInput | CourtUncheckedCreateWithoutEventsInput[] | No |
| connectOrCreate | CourtCreateOrConnectWithoutEventsInput | CourtCreateOrConnectWithoutEventsInput[] | No |
| upsert | CourtUpsertWithWhereUniqueWithoutEventsInput | CourtUpsertWithWhereUniqueWithoutEventsInput[] | No |
| set | CourtWhereUniqueInput | CourtWhereUniqueInput[] | No |
| disconnect | CourtWhereUniqueInput | CourtWhereUniqueInput[] | No |
| delete | CourtWhereUniqueInput | CourtWhereUniqueInput[] | No |
| connect | CourtWhereUniqueInput | CourtWhereUniqueInput[] | No |
| update | CourtUpdateWithWhereUniqueWithoutEventsInput | CourtUpdateWithWhereUniqueWithoutEventsInput[] | No |
| updateMany | CourtUpdateManyWithWhereWithoutEventsInput | CourtUpdateManyWithWhereWithoutEventsInput[] | No |
| deleteMany | CourtScalarWhereInput | CourtScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | InviteCreateWithoutEventInput | InviteUncheckedCreateWithoutEventInput | No |
| connectOrCreate | InviteCreateOrConnectWithoutEventInput | No |
| upsert | InviteUpsertWithoutEventInput | No |
| disconnect | Boolean | InviteWhereInput | No |
| delete | Boolean | InviteWhereInput | No |
| connect | InviteWhereUniqueInput | No |
| update | InviteUpdateToOneWithWhereWithoutEventInput | InviteUpdateWithoutEventInput | InviteUncheckedUpdateWithoutEventInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | PlayerCreateWithoutEventsInput | PlayerCreateWithoutEventsInput[] | PlayerUncheckedCreateWithoutEventsInput | PlayerUncheckedCreateWithoutEventsInput[] | No |
| connectOrCreate | PlayerCreateOrConnectWithoutEventsInput | PlayerCreateOrConnectWithoutEventsInput[] | No |
| upsert | PlayerUpsertWithWhereUniqueWithoutEventsInput | PlayerUpsertWithWhereUniqueWithoutEventsInput[] | No |
| set | PlayerWhereUniqueInput | PlayerWhereUniqueInput[] | No |
| disconnect | PlayerWhereUniqueInput | PlayerWhereUniqueInput[] | No |
| delete | PlayerWhereUniqueInput | PlayerWhereUniqueInput[] | No |
| connect | PlayerWhereUniqueInput | PlayerWhereUniqueInput[] | No |
| update | PlayerUpdateWithWhereUniqueWithoutEventsInput | PlayerUpdateWithWhereUniqueWithoutEventsInput[] | No |
| updateMany | PlayerUpdateManyWithWhereWithoutEventsInput | PlayerUpdateManyWithWhereWithoutEventsInput[] | No |
| deleteMany | PlayerScalarWhereInput | PlayerScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | MatchCreateWithoutEventInput | MatchCreateWithoutEventInput[] | MatchUncheckedCreateWithoutEventInput | MatchUncheckedCreateWithoutEventInput[] | No |
| connectOrCreate | MatchCreateOrConnectWithoutEventInput | MatchCreateOrConnectWithoutEventInput[] | No |
| upsert | MatchUpsertWithWhereUniqueWithoutEventInput | MatchUpsertWithWhereUniqueWithoutEventInput[] | No |
| createMany | MatchCreateManyEventInputEnvelope | No |
| set | MatchWhereUniqueInput | MatchWhereUniqueInput[] | No |
| disconnect | MatchWhereUniqueInput | MatchWhereUniqueInput[] | No |
| delete | MatchWhereUniqueInput | MatchWhereUniqueInput[] | No |
| connect | MatchWhereUniqueInput | MatchWhereUniqueInput[] | No |
| update | MatchUpdateWithWhereUniqueWithoutEventInput | MatchUpdateWithWhereUniqueWithoutEventInput[] | No |
| updateMany | MatchUpdateManyWithWhereWithoutEventInput | MatchUpdateManyWithWhereWithoutEventInput[] | No |
| deleteMany | MatchScalarWhereInput | MatchScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | PlaceCreateWithoutEventsInput | PlaceCreateWithoutEventsInput[] | PlaceUncheckedCreateWithoutEventsInput | PlaceUncheckedCreateWithoutEventsInput[] | No |
| connectOrCreate | PlaceCreateOrConnectWithoutEventsInput | PlaceCreateOrConnectWithoutEventsInput[] | No |
| upsert | PlaceUpsertWithWhereUniqueWithoutEventsInput | PlaceUpsertWithWhereUniqueWithoutEventsInput[] | No |
| set | PlaceWhereUniqueInput | PlaceWhereUniqueInput[] | No |
| disconnect | PlaceWhereUniqueInput | PlaceWhereUniqueInput[] | No |
| delete | PlaceWhereUniqueInput | PlaceWhereUniqueInput[] | No |
| connect | PlaceWhereUniqueInput | PlaceWhereUniqueInput[] | No |
| update | PlaceUpdateWithWhereUniqueWithoutEventsInput | PlaceUpdateWithWhereUniqueWithoutEventsInput[] | No |
| updateMany | PlaceUpdateManyWithWhereWithoutEventsInput | PlaceUpdateManyWithWhereWithoutEventsInput[] | No |
| deleteMany | PlaceScalarWhereInput | PlaceScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | GameCreateWithoutEventsInput | GameCreateWithoutEventsInput[] | GameUncheckedCreateWithoutEventsInput | GameUncheckedCreateWithoutEventsInput[] | No |
| connectOrCreate | GameCreateOrConnectWithoutEventsInput | GameCreateOrConnectWithoutEventsInput[] | No |
| upsert | GameUpsertWithWhereUniqueWithoutEventsInput | GameUpsertWithWhereUniqueWithoutEventsInput[] | No |
| set | GameWhereUniqueInput | GameWhereUniqueInput[] | No |
| disconnect | GameWhereUniqueInput | GameWhereUniqueInput[] | No |
| delete | GameWhereUniqueInput | GameWhereUniqueInput[] | No |
| connect | GameWhereUniqueInput | GameWhereUniqueInput[] | No |
| update | GameUpdateWithWhereUniqueWithoutEventsInput | GameUpdateWithWhereUniqueWithoutEventsInput[] | No |
| updateMany | GameUpdateManyWithWhereWithoutEventsInput | GameUpdateManyWithWhereWithoutEventsInput[] | No |
| deleteMany | GameScalarWhereInput | GameScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | SetCreateWithoutEventsInput | SetCreateWithoutEventsInput[] | SetUncheckedCreateWithoutEventsInput | SetUncheckedCreateWithoutEventsInput[] | No |
| connectOrCreate | SetCreateOrConnectWithoutEventsInput | SetCreateOrConnectWithoutEventsInput[] | No |
| upsert | SetUpsertWithWhereUniqueWithoutEventsInput | SetUpsertWithWhereUniqueWithoutEventsInput[] | No |
| set | SetWhereUniqueInput | SetWhereUniqueInput[] | No |
| disconnect | SetWhereUniqueInput | SetWhereUniqueInput[] | No |
| delete | SetWhereUniqueInput | SetWhereUniqueInput[] | No |
| connect | SetWhereUniqueInput | SetWhereUniqueInput[] | No |
| update | SetUpdateWithWhereUniqueWithoutEventsInput | SetUpdateWithWhereUniqueWithoutEventsInput[] | No |
| updateMany | SetUpdateManyWithWhereWithoutEventsInput | SetUpdateManyWithWhereWithoutEventsInput[] | No |
| deleteMany | SetScalarWhereInput | SetScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | CourtCreateWithoutEventsInput | CourtCreateWithoutEventsInput[] | CourtUncheckedCreateWithoutEventsInput | CourtUncheckedCreateWithoutEventsInput[] | No |
| connectOrCreate | CourtCreateOrConnectWithoutEventsInput | CourtCreateOrConnectWithoutEventsInput[] | No |
| upsert | CourtUpsertWithWhereUniqueWithoutEventsInput | CourtUpsertWithWhereUniqueWithoutEventsInput[] | No |
| set | CourtWhereUniqueInput | CourtWhereUniqueInput[] | No |
| disconnect | CourtWhereUniqueInput | CourtWhereUniqueInput[] | No |
| delete | CourtWhereUniqueInput | CourtWhereUniqueInput[] | No |
| connect | CourtWhereUniqueInput | CourtWhereUniqueInput[] | No |
| update | CourtUpdateWithWhereUniqueWithoutEventsInput | CourtUpdateWithWhereUniqueWithoutEventsInput[] | No |
| updateMany | CourtUpdateManyWithWhereWithoutEventsInput | CourtUpdateManyWithWhereWithoutEventsInput[] | No |
| deleteMany | CourtScalarWhereInput | CourtScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | InviteCreateWithoutEventInput | InviteUncheckedCreateWithoutEventInput | No |
| connectOrCreate | InviteCreateOrConnectWithoutEventInput | No |
| upsert | InviteUpsertWithoutEventInput | No |
| disconnect | Boolean | InviteWhereInput | No |
| delete | Boolean | InviteWhereInput | No |
| connect | InviteWhereUniqueInput | No |
| update | InviteUpdateToOneWithWhereWithoutEventInput | InviteUpdateWithoutEventInput | InviteUncheckedUpdateWithoutEventInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | CategoryCreateWithoutCategoryGroupInput | CategoryUncheckedCreateWithoutCategoryGroupInput | No |
| connectOrCreate | CategoryCreateOrConnectWithoutCategoryGroupInput | No |
| connect | CategoryWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | EventCreateWithoutCategoriesGroupsInput | EventUncheckedCreateWithoutCategoriesGroupsInput | No |
| connectOrCreate | EventCreateOrConnectWithoutCategoriesGroupsInput | No |
| connect | EventWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | DoubleCreateWithoutFirstPlaceInCategoryInput | DoubleUncheckedCreateWithoutFirstPlaceInCategoryInput | No |
| connectOrCreate | DoubleCreateOrConnectWithoutFirstPlaceInCategoryInput | No |
| connect | DoubleWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | DoubleCreateWithoutSecondPlaceInCategoryInput | DoubleUncheckedCreateWithoutSecondPlaceInCategoryInput | No |
| connectOrCreate | DoubleCreateOrConnectWithoutSecondPlaceInCategoryInput | No |
| connect | DoubleWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | CategoryCreateWithoutCategoryGroupInput | CategoryUncheckedCreateWithoutCategoryGroupInput | No |
| connectOrCreate | CategoryCreateOrConnectWithoutCategoryGroupInput | No |
| upsert | CategoryUpsertWithoutCategoryGroupInput | No |
| connect | CategoryWhereUniqueInput | No |
| update | CategoryUpdateToOneWithWhereWithoutCategoryGroupInput | CategoryUpdateWithoutCategoryGroupInput | CategoryUncheckedUpdateWithoutCategoryGroupInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | EventCreateWithoutCategoriesGroupsInput | EventUncheckedCreateWithoutCategoriesGroupsInput | No |
| connectOrCreate | EventCreateOrConnectWithoutCategoriesGroupsInput | No |
| upsert | EventUpsertWithoutCategoriesGroupsInput | No |
| disconnect | Boolean | EventWhereInput | No |
| delete | Boolean | EventWhereInput | No |
| connect | EventWhereUniqueInput | No |
| update | EventUpdateToOneWithWhereWithoutCategoriesGroupsInput | EventUpdateWithoutCategoriesGroupsInput | EventUncheckedUpdateWithoutCategoriesGroupsInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | DoubleCreateWithoutFirstPlaceInCategoryInput | DoubleUncheckedCreateWithoutFirstPlaceInCategoryInput | No |
| connectOrCreate | DoubleCreateOrConnectWithoutFirstPlaceInCategoryInput | No |
| upsert | DoubleUpsertWithoutFirstPlaceInCategoryInput | No |
| disconnect | Boolean | DoubleWhereInput | No |
| delete | Boolean | DoubleWhereInput | No |
| connect | DoubleWhereUniqueInput | No |
| update | DoubleUpdateToOneWithWhereWithoutFirstPlaceInCategoryInput | DoubleUpdateWithoutFirstPlaceInCategoryInput | DoubleUncheckedUpdateWithoutFirstPlaceInCategoryInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | DoubleCreateWithoutSecondPlaceInCategoryInput | DoubleUncheckedCreateWithoutSecondPlaceInCategoryInput | No |
| connectOrCreate | DoubleCreateOrConnectWithoutSecondPlaceInCategoryInput | No |
| upsert | DoubleUpsertWithoutSecondPlaceInCategoryInput | No |
| disconnect | Boolean | DoubleWhereInput | No |
| delete | Boolean | DoubleWhereInput | No |
| connect | DoubleWhereUniqueInput | No |
| update | DoubleUpdateToOneWithWhereWithoutSecondPlaceInCategoryInput | DoubleUpdateWithoutSecondPlaceInCategoryInput | DoubleUncheckedUpdateWithoutSecondPlaceInCategoryInput | No |
| Name | Type | Nullable |
|---|---|---|
| set | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| create | CategoryGroupCreateWithoutGroupsInput | CategoryGroupUncheckedCreateWithoutGroupsInput | No |
| connectOrCreate | CategoryGroupCreateOrConnectWithoutGroupsInput | No |
| connect | CategoryGroupWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | DoubleCreateWithoutFirstPlaceInGroupsInput | DoubleUncheckedCreateWithoutFirstPlaceInGroupsInput | No |
| connectOrCreate | DoubleCreateOrConnectWithoutFirstPlaceInGroupsInput | No |
| connect | DoubleWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | DoubleCreateWithoutSecondPlaceInGroupsInput | DoubleUncheckedCreateWithoutSecondPlaceInGroupsInput | No |
| connectOrCreate | DoubleCreateOrConnectWithoutSecondPlaceInGroupsInput | No |
| connect | DoubleWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | CategoryGroupCreateWithoutGroupsInput | CategoryGroupUncheckedCreateWithoutGroupsInput | No |
| connectOrCreate | CategoryGroupCreateOrConnectWithoutGroupsInput | No |
| upsert | CategoryGroupUpsertWithoutGroupsInput | No |
| disconnect | Boolean | CategoryGroupWhereInput | No |
| delete | Boolean | CategoryGroupWhereInput | No |
| connect | CategoryGroupWhereUniqueInput | No |
| update | CategoryGroupUpdateToOneWithWhereWithoutGroupsInput | CategoryGroupUpdateWithoutGroupsInput | CategoryGroupUncheckedUpdateWithoutGroupsInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | DoubleCreateWithoutFirstPlaceInGroupsInput | DoubleUncheckedCreateWithoutFirstPlaceInGroupsInput | No |
| connectOrCreate | DoubleCreateOrConnectWithoutFirstPlaceInGroupsInput | No |
| upsert | DoubleUpsertWithoutFirstPlaceInGroupsInput | No |
| disconnect | Boolean | DoubleWhereInput | No |
| delete | Boolean | DoubleWhereInput | No |
| connect | DoubleWhereUniqueInput | No |
| update | DoubleUpdateToOneWithWhereWithoutFirstPlaceInGroupsInput | DoubleUpdateWithoutFirstPlaceInGroupsInput | DoubleUncheckedUpdateWithoutFirstPlaceInGroupsInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | DoubleCreateWithoutSecondPlaceInGroupsInput | DoubleUncheckedCreateWithoutSecondPlaceInGroupsInput | No |
| connectOrCreate | DoubleCreateOrConnectWithoutSecondPlaceInGroupsInput | No |
| upsert | DoubleUpsertWithoutSecondPlaceInGroupsInput | No |
| disconnect | Boolean | DoubleWhereInput | No |
| delete | Boolean | DoubleWhereInput | No |
| connect | DoubleWhereUniqueInput | No |
| update | DoubleUpdateToOneWithWhereWithoutSecondPlaceInGroupsInput | DoubleUpdateWithoutSecondPlaceInGroupsInput | DoubleUncheckedUpdateWithoutSecondPlaceInGroupsInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | EventCreateWithoutEventRequestsInput | EventUncheckedCreateWithoutEventRequestsInput | No |
| connectOrCreate | EventCreateOrConnectWithoutEventRequestsInput | No |
| connect | EventWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | DoubleCreateWithoutEventRequestsInput | DoubleUncheckedCreateWithoutEventRequestsInput | No |
| connectOrCreate | DoubleCreateOrConnectWithoutEventRequestsInput | No |
| connect | DoubleWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | CategoryCreateWithoutEventRequestsInput | CategoryUncheckedCreateWithoutEventRequestsInput | No |
| connectOrCreate | CategoryCreateOrConnectWithoutEventRequestsInput | No |
| connect | CategoryWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| set | RequestStatus | No |
| Name | Type | Nullable |
|---|---|---|
| create | EventCreateWithoutEventRequestsInput | EventUncheckedCreateWithoutEventRequestsInput | No |
| connectOrCreate | EventCreateOrConnectWithoutEventRequestsInput | No |
| upsert | EventUpsertWithoutEventRequestsInput | No |
| connect | EventWhereUniqueInput | No |
| update | EventUpdateToOneWithWhereWithoutEventRequestsInput | EventUpdateWithoutEventRequestsInput | EventUncheckedUpdateWithoutEventRequestsInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | DoubleCreateWithoutEventRequestsInput | DoubleUncheckedCreateWithoutEventRequestsInput | No |
| connectOrCreate | DoubleCreateOrConnectWithoutEventRequestsInput | No |
| upsert | DoubleUpsertWithoutEventRequestsInput | No |
| connect | DoubleWhereUniqueInput | No |
| update | DoubleUpdateToOneWithWhereWithoutEventRequestsInput | DoubleUpdateWithoutEventRequestsInput | DoubleUncheckedUpdateWithoutEventRequestsInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | CategoryCreateWithoutEventRequestsInput | CategoryUncheckedCreateWithoutEventRequestsInput | No |
| connectOrCreate | CategoryCreateOrConnectWithoutEventRequestsInput | No |
| upsert | CategoryUpsertWithoutEventRequestsInput | No |
| connect | CategoryWhereUniqueInput | No |
| update | CategoryUpdateToOneWithWhereWithoutEventRequestsInput | CategoryUpdateWithoutEventRequestsInput | CategoryUncheckedUpdateWithoutEventRequestsInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | EventCreateWithoutCourtsInput | EventCreateWithoutCourtsInput[] | EventUncheckedCreateWithoutCourtsInput | EventUncheckedCreateWithoutCourtsInput[] | No |
| connectOrCreate | EventCreateOrConnectWithoutCourtsInput | EventCreateOrConnectWithoutCourtsInput[] | No |
| connect | EventWhereUniqueInput | EventWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | MatchCreateWithoutCourtInput | MatchCreateWithoutCourtInput[] | MatchUncheckedCreateWithoutCourtInput | MatchUncheckedCreateWithoutCourtInput[] | No |
| connectOrCreate | MatchCreateOrConnectWithoutCourtInput | MatchCreateOrConnectWithoutCourtInput[] | No |
| createMany | MatchCreateManyCourtInputEnvelope | No |
| connect | MatchWhereUniqueInput | MatchWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | PlaceCreateWithoutCourtsInput | PlaceUncheckedCreateWithoutCourtsInput | No |
| connectOrCreate | PlaceCreateOrConnectWithoutCourtsInput | No |
| connect | PlaceWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | MatchDateCreateWithoutCourtInput | MatchDateCreateWithoutCourtInput[] | MatchDateUncheckedCreateWithoutCourtInput | MatchDateUncheckedCreateWithoutCourtInput[] | No |
| connectOrCreate | MatchDateCreateOrConnectWithoutCourtInput | MatchDateCreateOrConnectWithoutCourtInput[] | No |
| createMany | MatchDateCreateManyCourtInputEnvelope | No |
| connect | MatchDateWhereUniqueInput | MatchDateWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | EventCreateWithoutCourtsInput | EventCreateWithoutCourtsInput[] | EventUncheckedCreateWithoutCourtsInput | EventUncheckedCreateWithoutCourtsInput[] | No |
| connectOrCreate | EventCreateOrConnectWithoutCourtsInput | EventCreateOrConnectWithoutCourtsInput[] | No |
| connect | EventWhereUniqueInput | EventWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | MatchCreateWithoutCourtInput | MatchCreateWithoutCourtInput[] | MatchUncheckedCreateWithoutCourtInput | MatchUncheckedCreateWithoutCourtInput[] | No |
| connectOrCreate | MatchCreateOrConnectWithoutCourtInput | MatchCreateOrConnectWithoutCourtInput[] | No |
| createMany | MatchCreateManyCourtInputEnvelope | No |
| connect | MatchWhereUniqueInput | MatchWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | MatchDateCreateWithoutCourtInput | MatchDateCreateWithoutCourtInput[] | MatchDateUncheckedCreateWithoutCourtInput | MatchDateUncheckedCreateWithoutCourtInput[] | No |
| connectOrCreate | MatchDateCreateOrConnectWithoutCourtInput | MatchDateCreateOrConnectWithoutCourtInput[] | No |
| createMany | MatchDateCreateManyCourtInputEnvelope | No |
| connect | MatchDateWhereUniqueInput | MatchDateWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | EventCreateWithoutCourtsInput | EventCreateWithoutCourtsInput[] | EventUncheckedCreateWithoutCourtsInput | EventUncheckedCreateWithoutCourtsInput[] | No |
| connectOrCreate | EventCreateOrConnectWithoutCourtsInput | EventCreateOrConnectWithoutCourtsInput[] | No |
| upsert | EventUpsertWithWhereUniqueWithoutCourtsInput | EventUpsertWithWhereUniqueWithoutCourtsInput[] | No |
| set | EventWhereUniqueInput | EventWhereUniqueInput[] | No |
| disconnect | EventWhereUniqueInput | EventWhereUniqueInput[] | No |
| delete | EventWhereUniqueInput | EventWhereUniqueInput[] | No |
| connect | EventWhereUniqueInput | EventWhereUniqueInput[] | No |
| update | EventUpdateWithWhereUniqueWithoutCourtsInput | EventUpdateWithWhereUniqueWithoutCourtsInput[] | No |
| updateMany | EventUpdateManyWithWhereWithoutCourtsInput | EventUpdateManyWithWhereWithoutCourtsInput[] | No |
| deleteMany | EventScalarWhereInput | EventScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | MatchCreateWithoutCourtInput | MatchCreateWithoutCourtInput[] | MatchUncheckedCreateWithoutCourtInput | MatchUncheckedCreateWithoutCourtInput[] | No |
| connectOrCreate | MatchCreateOrConnectWithoutCourtInput | MatchCreateOrConnectWithoutCourtInput[] | No |
| upsert | MatchUpsertWithWhereUniqueWithoutCourtInput | MatchUpsertWithWhereUniqueWithoutCourtInput[] | No |
| createMany | MatchCreateManyCourtInputEnvelope | No |
| set | MatchWhereUniqueInput | MatchWhereUniqueInput[] | No |
| disconnect | MatchWhereUniqueInput | MatchWhereUniqueInput[] | No |
| delete | MatchWhereUniqueInput | MatchWhereUniqueInput[] | No |
| connect | MatchWhereUniqueInput | MatchWhereUniqueInput[] | No |
| update | MatchUpdateWithWhereUniqueWithoutCourtInput | MatchUpdateWithWhereUniqueWithoutCourtInput[] | No |
| updateMany | MatchUpdateManyWithWhereWithoutCourtInput | MatchUpdateManyWithWhereWithoutCourtInput[] | No |
| deleteMany | MatchScalarWhereInput | MatchScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | PlaceCreateWithoutCourtsInput | PlaceUncheckedCreateWithoutCourtsInput | No |
| connectOrCreate | PlaceCreateOrConnectWithoutCourtsInput | No |
| upsert | PlaceUpsertWithoutCourtsInput | No |
| connect | PlaceWhereUniqueInput | No |
| update | PlaceUpdateToOneWithWhereWithoutCourtsInput | PlaceUpdateWithoutCourtsInput | PlaceUncheckedUpdateWithoutCourtsInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | EventCreateWithoutCourtsInput | EventCreateWithoutCourtsInput[] | EventUncheckedCreateWithoutCourtsInput | EventUncheckedCreateWithoutCourtsInput[] | No |
| connectOrCreate | EventCreateOrConnectWithoutCourtsInput | EventCreateOrConnectWithoutCourtsInput[] | No |
| upsert | EventUpsertWithWhereUniqueWithoutCourtsInput | EventUpsertWithWhereUniqueWithoutCourtsInput[] | No |
| set | EventWhereUniqueInput | EventWhereUniqueInput[] | No |
| disconnect | EventWhereUniqueInput | EventWhereUniqueInput[] | No |
| delete | EventWhereUniqueInput | EventWhereUniqueInput[] | No |
| connect | EventWhereUniqueInput | EventWhereUniqueInput[] | No |
| update | EventUpdateWithWhereUniqueWithoutCourtsInput | EventUpdateWithWhereUniqueWithoutCourtsInput[] | No |
| updateMany | EventUpdateManyWithWhereWithoutCourtsInput | EventUpdateManyWithWhereWithoutCourtsInput[] | No |
| deleteMany | EventScalarWhereInput | EventScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | MatchCreateWithoutCourtInput | MatchCreateWithoutCourtInput[] | MatchUncheckedCreateWithoutCourtInput | MatchUncheckedCreateWithoutCourtInput[] | No |
| connectOrCreate | MatchCreateOrConnectWithoutCourtInput | MatchCreateOrConnectWithoutCourtInput[] | No |
| upsert | MatchUpsertWithWhereUniqueWithoutCourtInput | MatchUpsertWithWhereUniqueWithoutCourtInput[] | No |
| createMany | MatchCreateManyCourtInputEnvelope | No |
| set | MatchWhereUniqueInput | MatchWhereUniqueInput[] | No |
| disconnect | MatchWhereUniqueInput | MatchWhereUniqueInput[] | No |
| delete | MatchWhereUniqueInput | MatchWhereUniqueInput[] | No |
| connect | MatchWhereUniqueInput | MatchWhereUniqueInput[] | No |
| update | MatchUpdateWithWhereUniqueWithoutCourtInput | MatchUpdateWithWhereUniqueWithoutCourtInput[] | No |
| updateMany | MatchUpdateManyWithWhereWithoutCourtInput | MatchUpdateManyWithWhereWithoutCourtInput[] | No |
| deleteMany | MatchScalarWhereInput | MatchScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | EventCreateWithoutEventDoublesInput | EventUncheckedCreateWithoutEventDoublesInput | No |
| connectOrCreate | EventCreateOrConnectWithoutEventDoublesInput | No |
| connect | EventWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | DoubleCreateWithoutEventDoubleInput | DoubleUncheckedCreateWithoutEventDoubleInput | No |
| connectOrCreate | DoubleCreateOrConnectWithoutEventDoubleInput | No |
| connect | DoubleWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | CategoryCreateWithoutEventDoublesInput | CategoryUncheckedCreateWithoutEventDoublesInput | No |
| connectOrCreate | CategoryCreateOrConnectWithoutEventDoublesInput | No |
| connect | CategoryWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | MatchDateCreateWithoutAtRestInput | MatchDateUncheckedCreateWithoutAtRestInput | No |
| connectOrCreate | MatchDateCreateOrConnectWithoutAtRestInput | No |
| connect | MatchDateWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | DoublesGroupCreateWithoutEventDoublesInput | DoublesGroupUncheckedCreateWithoutEventDoublesInput | No |
| connectOrCreate | DoublesGroupCreateOrConnectWithoutEventDoublesInput | No |
| connect | DoublesGroupWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | EventCreateWithoutEventDoublesInput | EventUncheckedCreateWithoutEventDoublesInput | No |
| connectOrCreate | EventCreateOrConnectWithoutEventDoublesInput | No |
| upsert | EventUpsertWithoutEventDoublesInput | No |
| connect | EventWhereUniqueInput | No |
| update | EventUpdateToOneWithWhereWithoutEventDoublesInput | EventUpdateWithoutEventDoublesInput | EventUncheckedUpdateWithoutEventDoublesInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | DoubleCreateWithoutEventDoubleInput | DoubleUncheckedCreateWithoutEventDoubleInput | No |
| connectOrCreate | DoubleCreateOrConnectWithoutEventDoubleInput | No |
| upsert | DoubleUpsertWithoutEventDoubleInput | No |
| connect | DoubleWhereUniqueInput | No |
| update | DoubleUpdateToOneWithWhereWithoutEventDoubleInput | DoubleUpdateWithoutEventDoubleInput | DoubleUncheckedUpdateWithoutEventDoubleInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | CategoryCreateWithoutEventDoublesInput | CategoryUncheckedCreateWithoutEventDoublesInput | No |
| connectOrCreate | CategoryCreateOrConnectWithoutEventDoublesInput | No |
| upsert | CategoryUpsertWithoutEventDoublesInput | No |
| connect | CategoryWhereUniqueInput | No |
| update | CategoryUpdateToOneWithWhereWithoutEventDoublesInput | CategoryUpdateWithoutEventDoublesInput | CategoryUncheckedUpdateWithoutEventDoublesInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | MatchDateCreateWithoutAtRestInput | MatchDateUncheckedCreateWithoutAtRestInput | No |
| connectOrCreate | MatchDateCreateOrConnectWithoutAtRestInput | No |
| upsert | MatchDateUpsertWithoutAtRestInput | No |
| disconnect | Boolean | MatchDateWhereInput | No |
| delete | Boolean | MatchDateWhereInput | No |
| connect | MatchDateWhereUniqueInput | No |
| update | MatchDateUpdateToOneWithWhereWithoutAtRestInput | MatchDateUpdateWithoutAtRestInput | MatchDateUncheckedUpdateWithoutAtRestInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | DoublesGroupCreateWithoutEventDoublesInput | DoublesGroupUncheckedCreateWithoutEventDoublesInput | No |
| connectOrCreate | DoublesGroupCreateOrConnectWithoutEventDoublesInput | No |
| upsert | DoublesGroupUpsertWithoutEventDoublesInput | No |
| disconnect | Boolean | DoublesGroupWhereInput | No |
| delete | Boolean | DoublesGroupWhereInput | No |
| connect | DoublesGroupWhereUniqueInput | No |
| update | DoublesGroupUpdateToOneWithWhereWithoutEventDoublesInput | DoublesGroupUpdateWithoutEventDoublesInput | DoublesGroupUncheckedUpdateWithoutEventDoublesInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | PlayerCreateWithoutCategoryInput | PlayerCreateWithoutCategoryInput[] | PlayerUncheckedCreateWithoutCategoryInput | PlayerUncheckedCreateWithoutCategoryInput[] | No |
| connectOrCreate | PlayerCreateOrConnectWithoutCategoryInput | PlayerCreateOrConnectWithoutCategoryInput[] | No |
| createMany | PlayerCreateManyCategoryInputEnvelope | No |
| connect | PlayerWhereUniqueInput | PlayerWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | DoubleCreateWithoutCategoryInput | DoubleCreateWithoutCategoryInput[] | DoubleUncheckedCreateWithoutCategoryInput | DoubleUncheckedCreateWithoutCategoryInput[] | No |
| connectOrCreate | DoubleCreateOrConnectWithoutCategoryInput | DoubleCreateOrConnectWithoutCategoryInput[] | No |
| createMany | DoubleCreateManyCategoryInputEnvelope | No |
| connect | DoubleWhereUniqueInput | DoubleWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | EventCreateWithoutCategoriesInput | EventCreateWithoutCategoriesInput[] | EventUncheckedCreateWithoutCategoriesInput | EventUncheckedCreateWithoutCategoriesInput[] | No |
| connectOrCreate | EventCreateOrConnectWithoutCategoriesInput | EventCreateOrConnectWithoutCategoriesInput[] | No |
| connect | EventWhereUniqueInput | EventWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | MatchCreateWithoutCategoryInput | MatchCreateWithoutCategoryInput[] | MatchUncheckedCreateWithoutCategoryInput | MatchUncheckedCreateWithoutCategoryInput[] | No |
| connectOrCreate | MatchCreateOrConnectWithoutCategoryInput | MatchCreateOrConnectWithoutCategoryInput[] | No |
| createMany | MatchCreateManyCategoryInputEnvelope | No |
| connect | MatchWhereUniqueInput | MatchWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | EventDoubleCreateWithoutCategoryInput | EventDoubleCreateWithoutCategoryInput[] | EventDoubleUncheckedCreateWithoutCategoryInput | EventDoubleUncheckedCreateWithoutCategoryInput[] | No |
| connectOrCreate | EventDoubleCreateOrConnectWithoutCategoryInput | EventDoubleCreateOrConnectWithoutCategoryInput[] | No |
| createMany | EventDoubleCreateManyCategoryInputEnvelope | No |
| connect | EventDoubleWhereUniqueInput | EventDoubleWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | PlayerCreateWithoutCategoryInput | PlayerCreateWithoutCategoryInput[] | PlayerUncheckedCreateWithoutCategoryInput | PlayerUncheckedCreateWithoutCategoryInput[] | No |
| connectOrCreate | PlayerCreateOrConnectWithoutCategoryInput | PlayerCreateOrConnectWithoutCategoryInput[] | No |
| createMany | PlayerCreateManyCategoryInputEnvelope | No |
| connect | PlayerWhereUniqueInput | PlayerWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | DoubleCreateWithoutCategoryInput | DoubleCreateWithoutCategoryInput[] | DoubleUncheckedCreateWithoutCategoryInput | DoubleUncheckedCreateWithoutCategoryInput[] | No |
| connectOrCreate | DoubleCreateOrConnectWithoutCategoryInput | DoubleCreateOrConnectWithoutCategoryInput[] | No |
| createMany | DoubleCreateManyCategoryInputEnvelope | No |
| connect | DoubleWhereUniqueInput | DoubleWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | EventCreateWithoutCategoriesInput | EventCreateWithoutCategoriesInput[] | EventUncheckedCreateWithoutCategoriesInput | EventUncheckedCreateWithoutCategoriesInput[] | No |
| connectOrCreate | EventCreateOrConnectWithoutCategoriesInput | EventCreateOrConnectWithoutCategoriesInput[] | No |
| connect | EventWhereUniqueInput | EventWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | MatchCreateWithoutCategoryInput | MatchCreateWithoutCategoryInput[] | MatchUncheckedCreateWithoutCategoryInput | MatchUncheckedCreateWithoutCategoryInput[] | No |
| connectOrCreate | MatchCreateOrConnectWithoutCategoryInput | MatchCreateOrConnectWithoutCategoryInput[] | No |
| createMany | MatchCreateManyCategoryInputEnvelope | No |
| connect | MatchWhereUniqueInput | MatchWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | EventDoubleCreateWithoutCategoryInput | EventDoubleCreateWithoutCategoryInput[] | EventDoubleUncheckedCreateWithoutCategoryInput | EventDoubleUncheckedCreateWithoutCategoryInput[] | No |
| connectOrCreate | EventDoubleCreateOrConnectWithoutCategoryInput | EventDoubleCreateOrConnectWithoutCategoryInput[] | No |
| createMany | EventDoubleCreateManyCategoryInputEnvelope | No |
| connect | EventDoubleWhereUniqueInput | EventDoubleWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| set | Int | No |
| increment | Int | No |
| decrement | Int | No |
| multiply | Int | No |
| divide | Int | No |
| Name | Type | Nullable |
|---|---|---|
| set | CatType | No |
| Name | Type | Nullable |
|---|---|---|
| create | PlayerCreateWithoutCategoryInput | PlayerCreateWithoutCategoryInput[] | PlayerUncheckedCreateWithoutCategoryInput | PlayerUncheckedCreateWithoutCategoryInput[] | No |
| connectOrCreate | PlayerCreateOrConnectWithoutCategoryInput | PlayerCreateOrConnectWithoutCategoryInput[] | No |
| upsert | PlayerUpsertWithWhereUniqueWithoutCategoryInput | PlayerUpsertWithWhereUniqueWithoutCategoryInput[] | No |
| createMany | PlayerCreateManyCategoryInputEnvelope | No |
| set | PlayerWhereUniqueInput | PlayerWhereUniqueInput[] | No |
| disconnect | PlayerWhereUniqueInput | PlayerWhereUniqueInput[] | No |
| delete | PlayerWhereUniqueInput | PlayerWhereUniqueInput[] | No |
| connect | PlayerWhereUniqueInput | PlayerWhereUniqueInput[] | No |
| update | PlayerUpdateWithWhereUniqueWithoutCategoryInput | PlayerUpdateWithWhereUniqueWithoutCategoryInput[] | No |
| updateMany | PlayerUpdateManyWithWhereWithoutCategoryInput | PlayerUpdateManyWithWhereWithoutCategoryInput[] | No |
| deleteMany | PlayerScalarWhereInput | PlayerScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | DoubleCreateWithoutCategoryInput | DoubleCreateWithoutCategoryInput[] | DoubleUncheckedCreateWithoutCategoryInput | DoubleUncheckedCreateWithoutCategoryInput[] | No |
| connectOrCreate | DoubleCreateOrConnectWithoutCategoryInput | DoubleCreateOrConnectWithoutCategoryInput[] | No |
| upsert | DoubleUpsertWithWhereUniqueWithoutCategoryInput | DoubleUpsertWithWhereUniqueWithoutCategoryInput[] | No |
| createMany | DoubleCreateManyCategoryInputEnvelope | No |
| set | DoubleWhereUniqueInput | DoubleWhereUniqueInput[] | No |
| disconnect | DoubleWhereUniqueInput | DoubleWhereUniqueInput[] | No |
| delete | DoubleWhereUniqueInput | DoubleWhereUniqueInput[] | No |
| connect | DoubleWhereUniqueInput | DoubleWhereUniqueInput[] | No |
| update | DoubleUpdateWithWhereUniqueWithoutCategoryInput | DoubleUpdateWithWhereUniqueWithoutCategoryInput[] | No |
| updateMany | DoubleUpdateManyWithWhereWithoutCategoryInput | DoubleUpdateManyWithWhereWithoutCategoryInput[] | No |
| deleteMany | DoubleScalarWhereInput | DoubleScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | MatchCreateWithoutCategoryInput | MatchCreateWithoutCategoryInput[] | MatchUncheckedCreateWithoutCategoryInput | MatchUncheckedCreateWithoutCategoryInput[] | No |
| connectOrCreate | MatchCreateOrConnectWithoutCategoryInput | MatchCreateOrConnectWithoutCategoryInput[] | No |
| upsert | MatchUpsertWithWhereUniqueWithoutCategoryInput | MatchUpsertWithWhereUniqueWithoutCategoryInput[] | No |
| createMany | MatchCreateManyCategoryInputEnvelope | No |
| set | MatchWhereUniqueInput | MatchWhereUniqueInput[] | No |
| disconnect | MatchWhereUniqueInput | MatchWhereUniqueInput[] | No |
| delete | MatchWhereUniqueInput | MatchWhereUniqueInput[] | No |
| connect | MatchWhereUniqueInput | MatchWhereUniqueInput[] | No |
| update | MatchUpdateWithWhereUniqueWithoutCategoryInput | MatchUpdateWithWhereUniqueWithoutCategoryInput[] | No |
| updateMany | MatchUpdateManyWithWhereWithoutCategoryInput | MatchUpdateManyWithWhereWithoutCategoryInput[] | No |
| deleteMany | MatchScalarWhereInput | MatchScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | PlayerCreateWithoutCategoryInput | PlayerCreateWithoutCategoryInput[] | PlayerUncheckedCreateWithoutCategoryInput | PlayerUncheckedCreateWithoutCategoryInput[] | No |
| connectOrCreate | PlayerCreateOrConnectWithoutCategoryInput | PlayerCreateOrConnectWithoutCategoryInput[] | No |
| upsert | PlayerUpsertWithWhereUniqueWithoutCategoryInput | PlayerUpsertWithWhereUniqueWithoutCategoryInput[] | No |
| createMany | PlayerCreateManyCategoryInputEnvelope | No |
| set | PlayerWhereUniqueInput | PlayerWhereUniqueInput[] | No |
| disconnect | PlayerWhereUniqueInput | PlayerWhereUniqueInput[] | No |
| delete | PlayerWhereUniqueInput | PlayerWhereUniqueInput[] | No |
| connect | PlayerWhereUniqueInput | PlayerWhereUniqueInput[] | No |
| update | PlayerUpdateWithWhereUniqueWithoutCategoryInput | PlayerUpdateWithWhereUniqueWithoutCategoryInput[] | No |
| updateMany | PlayerUpdateManyWithWhereWithoutCategoryInput | PlayerUpdateManyWithWhereWithoutCategoryInput[] | No |
| deleteMany | PlayerScalarWhereInput | PlayerScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | DoubleCreateWithoutCategoryInput | DoubleCreateWithoutCategoryInput[] | DoubleUncheckedCreateWithoutCategoryInput | DoubleUncheckedCreateWithoutCategoryInput[] | No |
| connectOrCreate | DoubleCreateOrConnectWithoutCategoryInput | DoubleCreateOrConnectWithoutCategoryInput[] | No |
| upsert | DoubleUpsertWithWhereUniqueWithoutCategoryInput | DoubleUpsertWithWhereUniqueWithoutCategoryInput[] | No |
| createMany | DoubleCreateManyCategoryInputEnvelope | No |
| set | DoubleWhereUniqueInput | DoubleWhereUniqueInput[] | No |
| disconnect | DoubleWhereUniqueInput | DoubleWhereUniqueInput[] | No |
| delete | DoubleWhereUniqueInput | DoubleWhereUniqueInput[] | No |
| connect | DoubleWhereUniqueInput | DoubleWhereUniqueInput[] | No |
| update | DoubleUpdateWithWhereUniqueWithoutCategoryInput | DoubleUpdateWithWhereUniqueWithoutCategoryInput[] | No |
| updateMany | DoubleUpdateManyWithWhereWithoutCategoryInput | DoubleUpdateManyWithWhereWithoutCategoryInput[] | No |
| deleteMany | DoubleScalarWhereInput | DoubleScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | MatchCreateWithoutCategoryInput | MatchCreateWithoutCategoryInput[] | MatchUncheckedCreateWithoutCategoryInput | MatchUncheckedCreateWithoutCategoryInput[] | No |
| connectOrCreate | MatchCreateOrConnectWithoutCategoryInput | MatchCreateOrConnectWithoutCategoryInput[] | No |
| upsert | MatchUpsertWithWhereUniqueWithoutCategoryInput | MatchUpsertWithWhereUniqueWithoutCategoryInput[] | No |
| createMany | MatchCreateManyCategoryInputEnvelope | No |
| set | MatchWhereUniqueInput | MatchWhereUniqueInput[] | No |
| disconnect | MatchWhereUniqueInput | MatchWhereUniqueInput[] | No |
| delete | MatchWhereUniqueInput | MatchWhereUniqueInput[] | No |
| connect | MatchWhereUniqueInput | MatchWhereUniqueInput[] | No |
| update | MatchUpdateWithWhereUniqueWithoutCategoryInput | MatchUpdateWithWhereUniqueWithoutCategoryInput[] | No |
| updateMany | MatchUpdateManyWithWhereWithoutCategoryInput | MatchUpdateManyWithWhereWithoutCategoryInput[] | No |
| deleteMany | MatchScalarWhereInput | MatchScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | EventCreateWithoutEventMatchesInput | EventUncheckedCreateWithoutEventMatchesInput | No |
| connectOrCreate | EventCreateOrConnectWithoutEventMatchesInput | No |
| connect | EventWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | MatchCreateWithoutEventMatchInput | MatchUncheckedCreateWithoutEventMatchInput | No |
| connectOrCreate | MatchCreateOrConnectWithoutEventMatchInput | No |
| connect | MatchWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | CategoryGroupCreateWithoutFinalMatchesInput | CategoryGroupUncheckedCreateWithoutFinalMatchesInput | No |
| connectOrCreate | CategoryGroupCreateOrConnectWithoutFinalMatchesInput | No |
| connect | CategoryGroupWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | DoublesGroupCreateWithoutGroupMatchesInput | DoublesGroupUncheckedCreateWithoutGroupMatchesInput | No |
| connectOrCreate | DoublesGroupCreateOrConnectWithoutGroupMatchesInput | No |
| connect | DoublesGroupWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| set | EventMatchType | No |
| Name | Type | Nullable |
|---|---|---|
| create | EventCreateWithoutEventMatchesInput | EventUncheckedCreateWithoutEventMatchesInput | No |
| connectOrCreate | EventCreateOrConnectWithoutEventMatchesInput | No |
| upsert | EventUpsertWithoutEventMatchesInput | No |
| connect | EventWhereUniqueInput | No |
| update | EventUpdateToOneWithWhereWithoutEventMatchesInput | EventUpdateWithoutEventMatchesInput | EventUncheckedUpdateWithoutEventMatchesInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | MatchCreateWithoutEventMatchInput | MatchUncheckedCreateWithoutEventMatchInput | No |
| connectOrCreate | MatchCreateOrConnectWithoutEventMatchInput | No |
| upsert | MatchUpsertWithoutEventMatchInput | No |
| connect | MatchWhereUniqueInput | No |
| update | MatchUpdateToOneWithWhereWithoutEventMatchInput | MatchUpdateWithoutEventMatchInput | MatchUncheckedUpdateWithoutEventMatchInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | CategoryGroupCreateWithoutFinalMatchesInput | CategoryGroupUncheckedCreateWithoutFinalMatchesInput | No |
| connectOrCreate | CategoryGroupCreateOrConnectWithoutFinalMatchesInput | No |
| upsert | CategoryGroupUpsertWithoutFinalMatchesInput | No |
| disconnect | Boolean | CategoryGroupWhereInput | No |
| delete | Boolean | CategoryGroupWhereInput | No |
| connect | CategoryGroupWhereUniqueInput | No |
| update | CategoryGroupUpdateToOneWithWhereWithoutFinalMatchesInput | CategoryGroupUpdateWithoutFinalMatchesInput | CategoryGroupUncheckedUpdateWithoutFinalMatchesInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | DoublesGroupCreateWithoutGroupMatchesInput | DoublesGroupUncheckedCreateWithoutGroupMatchesInput | No |
| connectOrCreate | DoublesGroupCreateOrConnectWithoutGroupMatchesInput | No |
| upsert | DoublesGroupUpsertWithoutGroupMatchesInput | No |
| disconnect | Boolean | DoublesGroupWhereInput | No |
| delete | Boolean | DoublesGroupWhereInput | No |
| connect | DoublesGroupWhereUniqueInput | No |
| update | DoublesGroupUpdateToOneWithWhereWithoutGroupMatchesInput | DoublesGroupUpdateWithoutGroupMatchesInput | DoublesGroupUncheckedUpdateWithoutGroupMatchesInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | MatchCreateWithoutMatchRefAInput | MatchUncheckedCreateWithoutMatchRefAInput | No |
| connectOrCreate | MatchCreateOrConnectWithoutMatchRefAInput | No |
| connect | MatchWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | MatchCreateWithoutMatchRefBInput | MatchUncheckedCreateWithoutMatchRefBInput | No |
| connectOrCreate | MatchCreateOrConnectWithoutMatchRefBInput | No |
| connect | MatchWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | MatchCreateWithoutMatchRefInput | MatchUncheckedCreateWithoutMatchRefInput | No |
| connectOrCreate | MatchCreateOrConnectWithoutMatchRefInput | No |
| connect | MatchWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | CategoryGroupCreateWithoutMatchesWithReferenceInput | CategoryGroupUncheckedCreateWithoutMatchesWithReferenceInput | No |
| connectOrCreate | CategoryGroupCreateOrConnectWithoutMatchesWithReferenceInput | No |
| connect | CategoryGroupWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | MatchCreateWithoutMatchRefAInput | MatchUncheckedCreateWithoutMatchRefAInput | No |
| connectOrCreate | MatchCreateOrConnectWithoutMatchRefAInput | No |
| upsert | MatchUpsertWithoutMatchRefAInput | No |
| disconnect | Boolean | MatchWhereInput | No |
| delete | Boolean | MatchWhereInput | No |
| connect | MatchWhereUniqueInput | No |
| update | MatchUpdateToOneWithWhereWithoutMatchRefAInput | MatchUpdateWithoutMatchRefAInput | MatchUncheckedUpdateWithoutMatchRefAInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | MatchCreateWithoutMatchRefBInput | MatchUncheckedCreateWithoutMatchRefBInput | No |
| connectOrCreate | MatchCreateOrConnectWithoutMatchRefBInput | No |
| upsert | MatchUpsertWithoutMatchRefBInput | No |
| disconnect | Boolean | MatchWhereInput | No |
| delete | Boolean | MatchWhereInput | No |
| connect | MatchWhereUniqueInput | No |
| update | MatchUpdateToOneWithWhereWithoutMatchRefBInput | MatchUpdateWithoutMatchRefBInput | MatchUncheckedUpdateWithoutMatchRefBInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | MatchCreateWithoutMatchRefInput | MatchUncheckedCreateWithoutMatchRefInput | No |
| connectOrCreate | MatchCreateOrConnectWithoutMatchRefInput | No |
| upsert | MatchUpsertWithoutMatchRefInput | No |
| disconnect | Boolean | MatchWhereInput | No |
| delete | Boolean | MatchWhereInput | No |
| connect | MatchWhereUniqueInput | No |
| update | MatchUpdateToOneWithWhereWithoutMatchRefInput | MatchUpdateWithoutMatchRefInput | MatchUncheckedUpdateWithoutMatchRefInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | CategoryGroupCreateWithoutMatchesWithReferenceInput | CategoryGroupUncheckedCreateWithoutMatchesWithReferenceInput | No |
| connectOrCreate | CategoryGroupCreateOrConnectWithoutMatchesWithReferenceInput | No |
| upsert | CategoryGroupUpsertWithoutMatchesWithReferenceInput | No |
| disconnect | Boolean | CategoryGroupWhereInput | No |
| delete | Boolean | CategoryGroupWhereInput | No |
| connect | CategoryGroupWhereUniqueInput | No |
| update | CategoryGroupUpdateToOneWithWhereWithoutMatchesWithReferenceInput | CategoryGroupUpdateWithoutMatchesWithReferenceInput | CategoryGroupUncheckedUpdateWithoutMatchesWithReferenceInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | PlayerCreateWithoutMatchesInput | PlayerCreateWithoutMatchesInput[] | PlayerUncheckedCreateWithoutMatchesInput | PlayerUncheckedCreateWithoutMatchesInput[] | No |
| connectOrCreate | PlayerCreateOrConnectWithoutMatchesInput | PlayerCreateOrConnectWithoutMatchesInput[] | No |
| connect | PlayerWhereUniqueInput | PlayerWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | CategoryCreateWithoutMatchesInput | CategoryUncheckedCreateWithoutMatchesInput | No |
| connectOrCreate | CategoryCreateOrConnectWithoutMatchesInput | No |
| connect | CategoryWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | DoubleCreateWithoutMatchesWinsInput | DoubleUncheckedCreateWithoutMatchesWinsInput | No |
| connectOrCreate | DoubleCreateOrConnectWithoutMatchesWinsInput | No |
| connect | DoubleWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | SetCreateWithoutMatchInput | SetCreateWithoutMatchInput[] | SetUncheckedCreateWithoutMatchInput | SetUncheckedCreateWithoutMatchInput[] | No |
| connectOrCreate | SetCreateOrConnectWithoutMatchInput | SetCreateOrConnectWithoutMatchInput[] | No |
| createMany | SetCreateManyMatchInputEnvelope | No |
| connect | SetWhereUniqueInput | SetWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | DoubleCreateWithoutMatchesInput | DoubleCreateWithoutMatchesInput[] | DoubleUncheckedCreateWithoutMatchesInput | DoubleUncheckedCreateWithoutMatchesInput[] | No |
| connectOrCreate | DoubleCreateOrConnectWithoutMatchesInput | DoubleCreateOrConnectWithoutMatchesInput[] | No |
| connect | DoubleWhereUniqueInput | DoubleWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | EventCreateWithoutMatchesInput | EventUncheckedCreateWithoutMatchesInput | No |
| connectOrCreate | EventCreateOrConnectWithoutMatchesInput | No |
| connect | EventWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | MatchDateCreateWithoutMatchInput | MatchDateUncheckedCreateWithoutMatchInput | No |
| connectOrCreate | MatchDateCreateOrConnectWithoutMatchInput | No |
| connect | MatchDateWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | CourtCreateWithoutMatchesInput | CourtUncheckedCreateWithoutMatchesInput | No |
| connectOrCreate | CourtCreateOrConnectWithoutMatchesInput | No |
| connect | CourtWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | InviteCreateWithoutMatchInput | InviteUncheckedCreateWithoutMatchInput | No |
| connectOrCreate | InviteCreateOrConnectWithoutMatchInput | No |
| connect | InviteWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | EventMatchCreateWithoutMatchInput | EventMatchUncheckedCreateWithoutMatchInput | No |
| connectOrCreate | EventMatchCreateOrConnectWithoutMatchInput | No |
| connect | EventMatchWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | MatchesReferencedCreateWithoutMatchAInput | MatchesReferencedUncheckedCreateWithoutMatchAInput | No |
| connectOrCreate | MatchesReferencedCreateOrConnectWithoutMatchAInput | No |
| connect | MatchesReferencedWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | MatchesReferencedCreateWithoutMatchBInput | MatchesReferencedUncheckedCreateWithoutMatchBInput | No |
| connectOrCreate | MatchesReferencedCreateOrConnectWithoutMatchBInput | No |
| connect | MatchesReferencedWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | MatchesReferencedCreateWithoutRefMatchInput | MatchesReferencedUncheckedCreateWithoutRefMatchInput | No |
| connectOrCreate | MatchesReferencedCreateOrConnectWithoutRefMatchInput | No |
| connect | MatchesReferencedWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | PlayerCreateWithoutMatchesInput | PlayerCreateWithoutMatchesInput[] | PlayerUncheckedCreateWithoutMatchesInput | PlayerUncheckedCreateWithoutMatchesInput[] | No |
| connectOrCreate | PlayerCreateOrConnectWithoutMatchesInput | PlayerCreateOrConnectWithoutMatchesInput[] | No |
| connect | PlayerWhereUniqueInput | PlayerWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | SetCreateWithoutMatchInput | SetCreateWithoutMatchInput[] | SetUncheckedCreateWithoutMatchInput | SetUncheckedCreateWithoutMatchInput[] | No |
| connectOrCreate | SetCreateOrConnectWithoutMatchInput | SetCreateOrConnectWithoutMatchInput[] | No |
| createMany | SetCreateManyMatchInputEnvelope | No |
| connect | SetWhereUniqueInput | SetWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | DoubleCreateWithoutMatchesInput | DoubleCreateWithoutMatchesInput[] | DoubleUncheckedCreateWithoutMatchesInput | DoubleUncheckedCreateWithoutMatchesInput[] | No |
| connectOrCreate | DoubleCreateOrConnectWithoutMatchesInput | DoubleCreateOrConnectWithoutMatchesInput[] | No |
| connect | DoubleWhereUniqueInput | DoubleWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | MatchDateCreateWithoutMatchInput | MatchDateUncheckedCreateWithoutMatchInput | No |
| connectOrCreate | MatchDateCreateOrConnectWithoutMatchInput | No |
| connect | MatchDateWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | InviteCreateWithoutMatchInput | InviteUncheckedCreateWithoutMatchInput | No |
| connectOrCreate | InviteCreateOrConnectWithoutMatchInput | No |
| connect | InviteWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | EventMatchCreateWithoutMatchInput | EventMatchUncheckedCreateWithoutMatchInput | No |
| connectOrCreate | EventMatchCreateOrConnectWithoutMatchInput | No |
| connect | EventMatchWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | MatchesReferencedCreateWithoutMatchAInput | MatchesReferencedUncheckedCreateWithoutMatchAInput | No |
| connectOrCreate | MatchesReferencedCreateOrConnectWithoutMatchAInput | No |
| connect | MatchesReferencedWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | MatchesReferencedCreateWithoutMatchBInput | MatchesReferencedUncheckedCreateWithoutMatchBInput | No |
| connectOrCreate | MatchesReferencedCreateOrConnectWithoutMatchBInput | No |
| connect | MatchesReferencedWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | MatchesReferencedCreateWithoutRefMatchInput | MatchesReferencedUncheckedCreateWithoutRefMatchInput | No |
| connectOrCreate | MatchesReferencedCreateOrConnectWithoutRefMatchInput | No |
| connect | MatchesReferencedWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | CategoryCreateWithoutMatchesInput | CategoryUncheckedCreateWithoutMatchesInput | No |
| connectOrCreate | CategoryCreateOrConnectWithoutMatchesInput | No |
| upsert | CategoryUpsertWithoutMatchesInput | No |
| disconnect | Boolean | CategoryWhereInput | No |
| delete | Boolean | CategoryWhereInput | No |
| connect | CategoryWhereUniqueInput | No |
| update | CategoryUpdateToOneWithWhereWithoutMatchesInput | CategoryUpdateWithoutMatchesInput | CategoryUncheckedUpdateWithoutMatchesInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | DoubleCreateWithoutMatchesWinsInput | DoubleUncheckedCreateWithoutMatchesWinsInput | No |
| connectOrCreate | DoubleCreateOrConnectWithoutMatchesWinsInput | No |
| upsert | DoubleUpsertWithoutMatchesWinsInput | No |
| disconnect | Boolean | DoubleWhereInput | No |
| delete | Boolean | DoubleWhereInput | No |
| connect | DoubleWhereUniqueInput | No |
| update | DoubleUpdateToOneWithWhereWithoutMatchesWinsInput | DoubleUpdateWithoutMatchesWinsInput | DoubleUncheckedUpdateWithoutMatchesWinsInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | SetCreateWithoutMatchInput | SetCreateWithoutMatchInput[] | SetUncheckedCreateWithoutMatchInput | SetUncheckedCreateWithoutMatchInput[] | No |
| connectOrCreate | SetCreateOrConnectWithoutMatchInput | SetCreateOrConnectWithoutMatchInput[] | No |
| upsert | SetUpsertWithWhereUniqueWithoutMatchInput | SetUpsertWithWhereUniqueWithoutMatchInput[] | No |
| createMany | SetCreateManyMatchInputEnvelope | No |
| set | SetWhereUniqueInput | SetWhereUniqueInput[] | No |
| disconnect | SetWhereUniqueInput | SetWhereUniqueInput[] | No |
| delete | SetWhereUniqueInput | SetWhereUniqueInput[] | No |
| connect | SetWhereUniqueInput | SetWhereUniqueInput[] | No |
| update | SetUpdateWithWhereUniqueWithoutMatchInput | SetUpdateWithWhereUniqueWithoutMatchInput[] | No |
| updateMany | SetUpdateManyWithWhereWithoutMatchInput | SetUpdateManyWithWhereWithoutMatchInput[] | No |
| deleteMany | SetScalarWhereInput | SetScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | EventCreateWithoutMatchesInput | EventUncheckedCreateWithoutMatchesInput | No |
| connectOrCreate | EventCreateOrConnectWithoutMatchesInput | No |
| upsert | EventUpsertWithoutMatchesInput | No |
| disconnect | Boolean | EventWhereInput | No |
| delete | Boolean | EventWhereInput | No |
| connect | EventWhereUniqueInput | No |
| update | EventUpdateToOneWithWhereWithoutMatchesInput | EventUpdateWithoutMatchesInput | EventUncheckedUpdateWithoutMatchesInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | MatchDateCreateWithoutMatchInput | MatchDateUncheckedCreateWithoutMatchInput | No |
| connectOrCreate | MatchDateCreateOrConnectWithoutMatchInput | No |
| upsert | MatchDateUpsertWithoutMatchInput | No |
| disconnect | Boolean | MatchDateWhereInput | No |
| delete | Boolean | MatchDateWhereInput | No |
| connect | MatchDateWhereUniqueInput | No |
| update | MatchDateUpdateToOneWithWhereWithoutMatchInput | MatchDateUpdateWithoutMatchInput | MatchDateUncheckedUpdateWithoutMatchInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | CourtCreateWithoutMatchesInput | CourtUncheckedCreateWithoutMatchesInput | No |
| connectOrCreate | CourtCreateOrConnectWithoutMatchesInput | No |
| upsert | CourtUpsertWithoutMatchesInput | No |
| disconnect | Boolean | CourtWhereInput | No |
| delete | Boolean | CourtWhereInput | No |
| connect | CourtWhereUniqueInput | No |
| update | CourtUpdateToOneWithWhereWithoutMatchesInput | CourtUpdateWithoutMatchesInput | CourtUncheckedUpdateWithoutMatchesInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | InviteCreateWithoutMatchInput | InviteUncheckedCreateWithoutMatchInput | No |
| connectOrCreate | InviteCreateOrConnectWithoutMatchInput | No |
| upsert | InviteUpsertWithoutMatchInput | No |
| disconnect | Boolean | InviteWhereInput | No |
| delete | Boolean | InviteWhereInput | No |
| connect | InviteWhereUniqueInput | No |
| update | InviteUpdateToOneWithWhereWithoutMatchInput | InviteUpdateWithoutMatchInput | InviteUncheckedUpdateWithoutMatchInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | EventMatchCreateWithoutMatchInput | EventMatchUncheckedCreateWithoutMatchInput | No |
| connectOrCreate | EventMatchCreateOrConnectWithoutMatchInput | No |
| upsert | EventMatchUpsertWithoutMatchInput | No |
| disconnect | Boolean | EventMatchWhereInput | No |
| delete | Boolean | EventMatchWhereInput | No |
| connect | EventMatchWhereUniqueInput | No |
| update | EventMatchUpdateToOneWithWhereWithoutMatchInput | EventMatchUpdateWithoutMatchInput | EventMatchUncheckedUpdateWithoutMatchInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | MatchesReferencedCreateWithoutMatchAInput | MatchesReferencedUncheckedCreateWithoutMatchAInput | No |
| connectOrCreate | MatchesReferencedCreateOrConnectWithoutMatchAInput | No |
| upsert | MatchesReferencedUpsertWithoutMatchAInput | No |
| disconnect | Boolean | MatchesReferencedWhereInput | No |
| delete | Boolean | MatchesReferencedWhereInput | No |
| connect | MatchesReferencedWhereUniqueInput | No |
| update | MatchesReferencedUpdateToOneWithWhereWithoutMatchAInput | MatchesReferencedUpdateWithoutMatchAInput | MatchesReferencedUncheckedUpdateWithoutMatchAInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | MatchesReferencedCreateWithoutMatchBInput | MatchesReferencedUncheckedCreateWithoutMatchBInput | No |
| connectOrCreate | MatchesReferencedCreateOrConnectWithoutMatchBInput | No |
| upsert | MatchesReferencedUpsertWithoutMatchBInput | No |
| disconnect | Boolean | MatchesReferencedWhereInput | No |
| delete | Boolean | MatchesReferencedWhereInput | No |
| connect | MatchesReferencedWhereUniqueInput | No |
| update | MatchesReferencedUpdateToOneWithWhereWithoutMatchBInput | MatchesReferencedUpdateWithoutMatchBInput | MatchesReferencedUncheckedUpdateWithoutMatchBInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | MatchesReferencedCreateWithoutRefMatchInput | MatchesReferencedUncheckedCreateWithoutRefMatchInput | No |
| connectOrCreate | MatchesReferencedCreateOrConnectWithoutRefMatchInput | No |
| upsert | MatchesReferencedUpsertWithoutRefMatchInput | No |
| disconnect | Boolean | MatchesReferencedWhereInput | No |
| delete | Boolean | MatchesReferencedWhereInput | No |
| connect | MatchesReferencedWhereUniqueInput | No |
| update | MatchesReferencedUpdateToOneWithWhereWithoutRefMatchInput | MatchesReferencedUpdateWithoutRefMatchInput | MatchesReferencedUncheckedUpdateWithoutRefMatchInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | SetCreateWithoutMatchInput | SetCreateWithoutMatchInput[] | SetUncheckedCreateWithoutMatchInput | SetUncheckedCreateWithoutMatchInput[] | No |
| connectOrCreate | SetCreateOrConnectWithoutMatchInput | SetCreateOrConnectWithoutMatchInput[] | No |
| upsert | SetUpsertWithWhereUniqueWithoutMatchInput | SetUpsertWithWhereUniqueWithoutMatchInput[] | No |
| createMany | SetCreateManyMatchInputEnvelope | No |
| set | SetWhereUniqueInput | SetWhereUniqueInput[] | No |
| disconnect | SetWhereUniqueInput | SetWhereUniqueInput[] | No |
| delete | SetWhereUniqueInput | SetWhereUniqueInput[] | No |
| connect | SetWhereUniqueInput | SetWhereUniqueInput[] | No |
| update | SetUpdateWithWhereUniqueWithoutMatchInput | SetUpdateWithWhereUniqueWithoutMatchInput[] | No |
| updateMany | SetUpdateManyWithWhereWithoutMatchInput | SetUpdateManyWithWhereWithoutMatchInput[] | No |
| deleteMany | SetScalarWhereInput | SetScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | MatchDateCreateWithoutMatchInput | MatchDateUncheckedCreateWithoutMatchInput | No |
| connectOrCreate | MatchDateCreateOrConnectWithoutMatchInput | No |
| upsert | MatchDateUpsertWithoutMatchInput | No |
| disconnect | Boolean | MatchDateWhereInput | No |
| delete | Boolean | MatchDateWhereInput | No |
| connect | MatchDateWhereUniqueInput | No |
| update | MatchDateUpdateToOneWithWhereWithoutMatchInput | MatchDateUpdateWithoutMatchInput | MatchDateUncheckedUpdateWithoutMatchInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | InviteCreateWithoutMatchInput | InviteUncheckedCreateWithoutMatchInput | No |
| connectOrCreate | InviteCreateOrConnectWithoutMatchInput | No |
| upsert | InviteUpsertWithoutMatchInput | No |
| disconnect | Boolean | InviteWhereInput | No |
| delete | Boolean | InviteWhereInput | No |
| connect | InviteWhereUniqueInput | No |
| update | InviteUpdateToOneWithWhereWithoutMatchInput | InviteUpdateWithoutMatchInput | InviteUncheckedUpdateWithoutMatchInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | EventMatchCreateWithoutMatchInput | EventMatchUncheckedCreateWithoutMatchInput | No |
| connectOrCreate | EventMatchCreateOrConnectWithoutMatchInput | No |
| upsert | EventMatchUpsertWithoutMatchInput | No |
| disconnect | Boolean | EventMatchWhereInput | No |
| delete | Boolean | EventMatchWhereInput | No |
| connect | EventMatchWhereUniqueInput | No |
| update | EventMatchUpdateToOneWithWhereWithoutMatchInput | EventMatchUpdateWithoutMatchInput | EventMatchUncheckedUpdateWithoutMatchInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | MatchesReferencedCreateWithoutMatchAInput | MatchesReferencedUncheckedCreateWithoutMatchAInput | No |
| connectOrCreate | MatchesReferencedCreateOrConnectWithoutMatchAInput | No |
| upsert | MatchesReferencedUpsertWithoutMatchAInput | No |
| disconnect | Boolean | MatchesReferencedWhereInput | No |
| delete | Boolean | MatchesReferencedWhereInput | No |
| connect | MatchesReferencedWhereUniqueInput | No |
| update | MatchesReferencedUpdateToOneWithWhereWithoutMatchAInput | MatchesReferencedUpdateWithoutMatchAInput | MatchesReferencedUncheckedUpdateWithoutMatchAInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | MatchesReferencedCreateWithoutMatchBInput | MatchesReferencedUncheckedCreateWithoutMatchBInput | No |
| connectOrCreate | MatchesReferencedCreateOrConnectWithoutMatchBInput | No |
| upsert | MatchesReferencedUpsertWithoutMatchBInput | No |
| disconnect | Boolean | MatchesReferencedWhereInput | No |
| delete | Boolean | MatchesReferencedWhereInput | No |
| connect | MatchesReferencedWhereUniqueInput | No |
| update | MatchesReferencedUpdateToOneWithWhereWithoutMatchBInput | MatchesReferencedUpdateWithoutMatchBInput | MatchesReferencedUncheckedUpdateWithoutMatchBInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | MatchesReferencedCreateWithoutRefMatchInput | MatchesReferencedUncheckedCreateWithoutRefMatchInput | No |
| connectOrCreate | MatchesReferencedCreateOrConnectWithoutRefMatchInput | No |
| upsert | MatchesReferencedUpsertWithoutRefMatchInput | No |
| disconnect | Boolean | MatchesReferencedWhereInput | No |
| delete | Boolean | MatchesReferencedWhereInput | No |
| connect | MatchesReferencedWhereUniqueInput | No |
| update | MatchesReferencedUpdateToOneWithWhereWithoutRefMatchInput | MatchesReferencedUpdateWithoutRefMatchInput | MatchesReferencedUncheckedUpdateWithoutRefMatchInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | EventCreateWithoutMatchDatesInput | EventUncheckedCreateWithoutMatchDatesInput | No |
| connectOrCreate | EventCreateOrConnectWithoutMatchDatesInput | No |
| connect | EventWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | MatchCreateWithoutMatchDateInput | MatchUncheckedCreateWithoutMatchDateInput | No |
| connectOrCreate | MatchCreateOrConnectWithoutMatchDateInput | No |
| connect | MatchWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | CourtCreateWithoutMatchDatesInput | CourtUncheckedCreateWithoutMatchDatesInput | No |
| connectOrCreate | CourtCreateOrConnectWithoutMatchDatesInput | No |
| connect | CourtWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | EventDoubleCreateWithoutAtRestInput | EventDoubleCreateWithoutAtRestInput[] | EventDoubleUncheckedCreateWithoutAtRestInput | EventDoubleUncheckedCreateWithoutAtRestInput[] | No |
| connectOrCreate | EventDoubleCreateOrConnectWithoutAtRestInput | EventDoubleCreateOrConnectWithoutAtRestInput[] | No |
| createMany | EventDoubleCreateManyAtRestInputEnvelope | No |
| connect | EventDoubleWhereUniqueInput | EventDoubleWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | EventDoubleCreateWithoutAtRestInput | EventDoubleCreateWithoutAtRestInput[] | EventDoubleUncheckedCreateWithoutAtRestInput | EventDoubleUncheckedCreateWithoutAtRestInput[] | No |
| connectOrCreate | EventDoubleCreateOrConnectWithoutAtRestInput | EventDoubleCreateOrConnectWithoutAtRestInput[] | No |
| createMany | EventDoubleCreateManyAtRestInputEnvelope | No |
| connect | EventDoubleWhereUniqueInput | EventDoubleWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| set | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| create | EventCreateWithoutMatchDatesInput | EventUncheckedCreateWithoutMatchDatesInput | No |
| connectOrCreate | EventCreateOrConnectWithoutMatchDatesInput | No |
| upsert | EventUpsertWithoutMatchDatesInput | No |
| connect | EventWhereUniqueInput | No |
| update | EventUpdateToOneWithWhereWithoutMatchDatesInput | EventUpdateWithoutMatchDatesInput | EventUncheckedUpdateWithoutMatchDatesInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | MatchCreateWithoutMatchDateInput | MatchUncheckedCreateWithoutMatchDateInput | No |
| connectOrCreate | MatchCreateOrConnectWithoutMatchDateInput | No |
| upsert | MatchUpsertWithoutMatchDateInput | No |
| disconnect | Boolean | MatchWhereInput | No |
| delete | Boolean | MatchWhereInput | No |
| connect | MatchWhereUniqueInput | No |
| update | MatchUpdateToOneWithWhereWithoutMatchDateInput | MatchUpdateWithoutMatchDateInput | MatchUncheckedUpdateWithoutMatchDateInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | CourtCreateWithoutMatchDatesInput | CourtUncheckedCreateWithoutMatchDatesInput | No |
| connectOrCreate | CourtCreateOrConnectWithoutMatchDatesInput | No |
| upsert | CourtUpsertWithoutMatchDatesInput | No |
| connect | CourtWhereUniqueInput | No |
| update | CourtUpdateToOneWithWhereWithoutMatchDatesInput | CourtUpdateWithoutMatchDatesInput | CourtUncheckedUpdateWithoutMatchDatesInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | DoubleCreateWithoutSetsInput | DoubleCreateWithoutSetsInput[] | DoubleUncheckedCreateWithoutSetsInput | DoubleUncheckedCreateWithoutSetsInput[] | No |
| connectOrCreate | DoubleCreateOrConnectWithoutSetsInput | DoubleCreateOrConnectWithoutSetsInput[] | No |
| connect | DoubleWhereUniqueInput | DoubleWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | DoubleCreateWithoutSetsWinsInput | DoubleUncheckedCreateWithoutSetsWinsInput | No |
| connectOrCreate | DoubleCreateOrConnectWithoutSetsWinsInput | No |
| connect | DoubleWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | MatchCreateWithoutSetsInput | MatchUncheckedCreateWithoutSetsInput | No |
| connectOrCreate | MatchCreateOrConnectWithoutSetsInput | No |
| connect | MatchWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | GameCreateWithoutSetInput | GameCreateWithoutSetInput[] | GameUncheckedCreateWithoutSetInput | GameUncheckedCreateWithoutSetInput[] | No |
| connectOrCreate | GameCreateOrConnectWithoutSetInput | GameCreateOrConnectWithoutSetInput[] | No |
| createMany | GameCreateManySetInputEnvelope | No |
| connect | GameWhereUniqueInput | GameWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | EventCreateWithoutSetsInput | EventCreateWithoutSetsInput[] | EventUncheckedCreateWithoutSetsInput | EventUncheckedCreateWithoutSetsInput[] | No |
| connectOrCreate | EventCreateOrConnectWithoutSetsInput | EventCreateOrConnectWithoutSetsInput[] | No |
| connect | EventWhereUniqueInput | EventWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | DoubleCreateWithoutSetsInput | DoubleCreateWithoutSetsInput[] | DoubleUncheckedCreateWithoutSetsInput | DoubleUncheckedCreateWithoutSetsInput[] | No |
| connectOrCreate | DoubleCreateOrConnectWithoutSetsInput | DoubleCreateOrConnectWithoutSetsInput[] | No |
| connect | DoubleWhereUniqueInput | DoubleWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | GameCreateWithoutSetInput | GameCreateWithoutSetInput[] | GameUncheckedCreateWithoutSetInput | GameUncheckedCreateWithoutSetInput[] | No |
| connectOrCreate | GameCreateOrConnectWithoutSetInput | GameCreateOrConnectWithoutSetInput[] | No |
| createMany | GameCreateManySetInputEnvelope | No |
| connect | GameWhereUniqueInput | GameWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | EventCreateWithoutSetsInput | EventCreateWithoutSetsInput[] | EventUncheckedCreateWithoutSetsInput | EventUncheckedCreateWithoutSetsInput[] | No |
| connectOrCreate | EventCreateOrConnectWithoutSetsInput | EventCreateOrConnectWithoutSetsInput[] | No |
| connect | EventWhereUniqueInput | EventWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| set | SetType | No |
| Name | Type | Nullable |
|---|---|---|
| create | DoubleCreateWithoutSetsInput | DoubleCreateWithoutSetsInput[] | DoubleUncheckedCreateWithoutSetsInput | DoubleUncheckedCreateWithoutSetsInput[] | No |
| connectOrCreate | DoubleCreateOrConnectWithoutSetsInput | DoubleCreateOrConnectWithoutSetsInput[] | No |
| upsert | DoubleUpsertWithWhereUniqueWithoutSetsInput | DoubleUpsertWithWhereUniqueWithoutSetsInput[] | No |
| set | DoubleWhereUniqueInput | DoubleWhereUniqueInput[] | No |
| disconnect | DoubleWhereUniqueInput | DoubleWhereUniqueInput[] | No |
| delete | DoubleWhereUniqueInput | DoubleWhereUniqueInput[] | No |
| connect | DoubleWhereUniqueInput | DoubleWhereUniqueInput[] | No |
| update | DoubleUpdateWithWhereUniqueWithoutSetsInput | DoubleUpdateWithWhereUniqueWithoutSetsInput[] | No |
| updateMany | DoubleUpdateManyWithWhereWithoutSetsInput | DoubleUpdateManyWithWhereWithoutSetsInput[] | No |
| deleteMany | DoubleScalarWhereInput | DoubleScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | DoubleCreateWithoutSetsWinsInput | DoubleUncheckedCreateWithoutSetsWinsInput | No |
| connectOrCreate | DoubleCreateOrConnectWithoutSetsWinsInput | No |
| upsert | DoubleUpsertWithoutSetsWinsInput | No |
| disconnect | Boolean | DoubleWhereInput | No |
| delete | Boolean | DoubleWhereInput | No |
| connect | DoubleWhereUniqueInput | No |
| update | DoubleUpdateToOneWithWhereWithoutSetsWinsInput | DoubleUpdateWithoutSetsWinsInput | DoubleUncheckedUpdateWithoutSetsWinsInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | MatchCreateWithoutSetsInput | MatchUncheckedCreateWithoutSetsInput | No |
| connectOrCreate | MatchCreateOrConnectWithoutSetsInput | No |
| upsert | MatchUpsertWithoutSetsInput | No |
| connect | MatchWhereUniqueInput | No |
| update | MatchUpdateToOneWithWhereWithoutSetsInput | MatchUpdateWithoutSetsInput | MatchUncheckedUpdateWithoutSetsInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | GameCreateWithoutSetInput | GameCreateWithoutSetInput[] | GameUncheckedCreateWithoutSetInput | GameUncheckedCreateWithoutSetInput[] | No |
| connectOrCreate | GameCreateOrConnectWithoutSetInput | GameCreateOrConnectWithoutSetInput[] | No |
| upsert | GameUpsertWithWhereUniqueWithoutSetInput | GameUpsertWithWhereUniqueWithoutSetInput[] | No |
| createMany | GameCreateManySetInputEnvelope | No |
| set | GameWhereUniqueInput | GameWhereUniqueInput[] | No |
| disconnect | GameWhereUniqueInput | GameWhereUniqueInput[] | No |
| delete | GameWhereUniqueInput | GameWhereUniqueInput[] | No |
| connect | GameWhereUniqueInput | GameWhereUniqueInput[] | No |
| update | GameUpdateWithWhereUniqueWithoutSetInput | GameUpdateWithWhereUniqueWithoutSetInput[] | No |
| updateMany | GameUpdateManyWithWhereWithoutSetInput | GameUpdateManyWithWhereWithoutSetInput[] | No |
| deleteMany | GameScalarWhereInput | GameScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | EventCreateWithoutSetsInput | EventCreateWithoutSetsInput[] | EventUncheckedCreateWithoutSetsInput | EventUncheckedCreateWithoutSetsInput[] | No |
| connectOrCreate | EventCreateOrConnectWithoutSetsInput | EventCreateOrConnectWithoutSetsInput[] | No |
| upsert | EventUpsertWithWhereUniqueWithoutSetsInput | EventUpsertWithWhereUniqueWithoutSetsInput[] | No |
| set | EventWhereUniqueInput | EventWhereUniqueInput[] | No |
| disconnect | EventWhereUniqueInput | EventWhereUniqueInput[] | No |
| delete | EventWhereUniqueInput | EventWhereUniqueInput[] | No |
| connect | EventWhereUniqueInput | EventWhereUniqueInput[] | No |
| update | EventUpdateWithWhereUniqueWithoutSetsInput | EventUpdateWithWhereUniqueWithoutSetsInput[] | No |
| updateMany | EventUpdateManyWithWhereWithoutSetsInput | EventUpdateManyWithWhereWithoutSetsInput[] | No |
| deleteMany | EventScalarWhereInput | EventScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | DoubleCreateWithoutSetsInput | DoubleCreateWithoutSetsInput[] | DoubleUncheckedCreateWithoutSetsInput | DoubleUncheckedCreateWithoutSetsInput[] | No |
| connectOrCreate | DoubleCreateOrConnectWithoutSetsInput | DoubleCreateOrConnectWithoutSetsInput[] | No |
| upsert | DoubleUpsertWithWhereUniqueWithoutSetsInput | DoubleUpsertWithWhereUniqueWithoutSetsInput[] | No |
| set | DoubleWhereUniqueInput | DoubleWhereUniqueInput[] | No |
| disconnect | DoubleWhereUniqueInput | DoubleWhereUniqueInput[] | No |
| delete | DoubleWhereUniqueInput | DoubleWhereUniqueInput[] | No |
| connect | DoubleWhereUniqueInput | DoubleWhereUniqueInput[] | No |
| update | DoubleUpdateWithWhereUniqueWithoutSetsInput | DoubleUpdateWithWhereUniqueWithoutSetsInput[] | No |
| updateMany | DoubleUpdateManyWithWhereWithoutSetsInput | DoubleUpdateManyWithWhereWithoutSetsInput[] | No |
| deleteMany | DoubleScalarWhereInput | DoubleScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | GameCreateWithoutSetInput | GameCreateWithoutSetInput[] | GameUncheckedCreateWithoutSetInput | GameUncheckedCreateWithoutSetInput[] | No |
| connectOrCreate | GameCreateOrConnectWithoutSetInput | GameCreateOrConnectWithoutSetInput[] | No |
| upsert | GameUpsertWithWhereUniqueWithoutSetInput | GameUpsertWithWhereUniqueWithoutSetInput[] | No |
| createMany | GameCreateManySetInputEnvelope | No |
| set | GameWhereUniqueInput | GameWhereUniqueInput[] | No |
| disconnect | GameWhereUniqueInput | GameWhereUniqueInput[] | No |
| delete | GameWhereUniqueInput | GameWhereUniqueInput[] | No |
| connect | GameWhereUniqueInput | GameWhereUniqueInput[] | No |
| update | GameUpdateWithWhereUniqueWithoutSetInput | GameUpdateWithWhereUniqueWithoutSetInput[] | No |
| updateMany | GameUpdateManyWithWhereWithoutSetInput | GameUpdateManyWithWhereWithoutSetInput[] | No |
| deleteMany | GameScalarWhereInput | GameScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | EventCreateWithoutSetsInput | EventCreateWithoutSetsInput[] | EventUncheckedCreateWithoutSetsInput | EventUncheckedCreateWithoutSetsInput[] | No |
| connectOrCreate | EventCreateOrConnectWithoutSetsInput | EventCreateOrConnectWithoutSetsInput[] | No |
| upsert | EventUpsertWithWhereUniqueWithoutSetsInput | EventUpsertWithWhereUniqueWithoutSetsInput[] | No |
| set | EventWhereUniqueInput | EventWhereUniqueInput[] | No |
| disconnect | EventWhereUniqueInput | EventWhereUniqueInput[] | No |
| delete | EventWhereUniqueInput | EventWhereUniqueInput[] | No |
| connect | EventWhereUniqueInput | EventWhereUniqueInput[] | No |
| update | EventUpdateWithWhereUniqueWithoutSetsInput | EventUpdateWithWhereUniqueWithoutSetsInput[] | No |
| updateMany | EventUpdateManyWithWhereWithoutSetsInput | EventUpdateManyWithWhereWithoutSetsInput[] | No |
| deleteMany | EventScalarWhereInput | EventScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | SetCreateWithoutGamesInput | SetUncheckedCreateWithoutGamesInput | No |
| connectOrCreate | SetCreateOrConnectWithoutGamesInput | No |
| connect | SetWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | DoubleCreateWithoutGamesInput | DoubleCreateWithoutGamesInput[] | DoubleUncheckedCreateWithoutGamesInput | DoubleUncheckedCreateWithoutGamesInput[] | No |
| connectOrCreate | DoubleCreateOrConnectWithoutGamesInput | DoubleCreateOrConnectWithoutGamesInput[] | No |
| connect | DoubleWhereUniqueInput | DoubleWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | DoubleCreateWithoutGamesWinsInput | DoubleUncheckedCreateWithoutGamesWinsInput | No |
| connectOrCreate | DoubleCreateOrConnectWithoutGamesWinsInput | No |
| connect | DoubleWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | EventCreateWithoutGamesInput | EventCreateWithoutGamesInput[] | EventUncheckedCreateWithoutGamesInput | EventUncheckedCreateWithoutGamesInput[] | No |
| connectOrCreate | EventCreateOrConnectWithoutGamesInput | EventCreateOrConnectWithoutGamesInput[] | No |
| connect | EventWhereUniqueInput | EventWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | DoubleCreateWithoutGamesInput | DoubleCreateWithoutGamesInput[] | DoubleUncheckedCreateWithoutGamesInput | DoubleUncheckedCreateWithoutGamesInput[] | No |
| connectOrCreate | DoubleCreateOrConnectWithoutGamesInput | DoubleCreateOrConnectWithoutGamesInput[] | No |
| connect | DoubleWhereUniqueInput | DoubleWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | EventCreateWithoutGamesInput | EventCreateWithoutGamesInput[] | EventUncheckedCreateWithoutGamesInput | EventUncheckedCreateWithoutGamesInput[] | No |
| connectOrCreate | EventCreateOrConnectWithoutGamesInput | EventCreateOrConnectWithoutGamesInput[] | No |
| connect | EventWhereUniqueInput | EventWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | SetCreateWithoutGamesInput | SetUncheckedCreateWithoutGamesInput | No |
| connectOrCreate | SetCreateOrConnectWithoutGamesInput | No |
| upsert | SetUpsertWithoutGamesInput | No |
| connect | SetWhereUniqueInput | No |
| update | SetUpdateToOneWithWhereWithoutGamesInput | SetUpdateWithoutGamesInput | SetUncheckedUpdateWithoutGamesInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | DoubleCreateWithoutGamesInput | DoubleCreateWithoutGamesInput[] | DoubleUncheckedCreateWithoutGamesInput | DoubleUncheckedCreateWithoutGamesInput[] | No |
| connectOrCreate | DoubleCreateOrConnectWithoutGamesInput | DoubleCreateOrConnectWithoutGamesInput[] | No |
| upsert | DoubleUpsertWithWhereUniqueWithoutGamesInput | DoubleUpsertWithWhereUniqueWithoutGamesInput[] | No |
| set | DoubleWhereUniqueInput | DoubleWhereUniqueInput[] | No |
| disconnect | DoubleWhereUniqueInput | DoubleWhereUniqueInput[] | No |
| delete | DoubleWhereUniqueInput | DoubleWhereUniqueInput[] | No |
| connect | DoubleWhereUniqueInput | DoubleWhereUniqueInput[] | No |
| update | DoubleUpdateWithWhereUniqueWithoutGamesInput | DoubleUpdateWithWhereUniqueWithoutGamesInput[] | No |
| updateMany | DoubleUpdateManyWithWhereWithoutGamesInput | DoubleUpdateManyWithWhereWithoutGamesInput[] | No |
| deleteMany | DoubleScalarWhereInput | DoubleScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | DoubleCreateWithoutGamesWinsInput | DoubleUncheckedCreateWithoutGamesWinsInput | No |
| connectOrCreate | DoubleCreateOrConnectWithoutGamesWinsInput | No |
| upsert | DoubleUpsertWithoutGamesWinsInput | No |
| disconnect | Boolean | DoubleWhereInput | No |
| delete | Boolean | DoubleWhereInput | No |
| connect | DoubleWhereUniqueInput | No |
| update | DoubleUpdateToOneWithWhereWithoutGamesWinsInput | DoubleUpdateWithoutGamesWinsInput | DoubleUncheckedUpdateWithoutGamesWinsInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | EventCreateWithoutGamesInput | EventCreateWithoutGamesInput[] | EventUncheckedCreateWithoutGamesInput | EventUncheckedCreateWithoutGamesInput[] | No |
| connectOrCreate | EventCreateOrConnectWithoutGamesInput | EventCreateOrConnectWithoutGamesInput[] | No |
| upsert | EventUpsertWithWhereUniqueWithoutGamesInput | EventUpsertWithWhereUniqueWithoutGamesInput[] | No |
| set | EventWhereUniqueInput | EventWhereUniqueInput[] | No |
| disconnect | EventWhereUniqueInput | EventWhereUniqueInput[] | No |
| delete | EventWhereUniqueInput | EventWhereUniqueInput[] | No |
| connect | EventWhereUniqueInput | EventWhereUniqueInput[] | No |
| update | EventUpdateWithWhereUniqueWithoutGamesInput | EventUpdateWithWhereUniqueWithoutGamesInput[] | No |
| updateMany | EventUpdateManyWithWhereWithoutGamesInput | EventUpdateManyWithWhereWithoutGamesInput[] | No |
| deleteMany | EventScalarWhereInput | EventScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | DoubleCreateWithoutGamesInput | DoubleCreateWithoutGamesInput[] | DoubleUncheckedCreateWithoutGamesInput | DoubleUncheckedCreateWithoutGamesInput[] | No |
| connectOrCreate | DoubleCreateOrConnectWithoutGamesInput | DoubleCreateOrConnectWithoutGamesInput[] | No |
| upsert | DoubleUpsertWithWhereUniqueWithoutGamesInput | DoubleUpsertWithWhereUniqueWithoutGamesInput[] | No |
| set | DoubleWhereUniqueInput | DoubleWhereUniqueInput[] | No |
| disconnect | DoubleWhereUniqueInput | DoubleWhereUniqueInput[] | No |
| delete | DoubleWhereUniqueInput | DoubleWhereUniqueInput[] | No |
| connect | DoubleWhereUniqueInput | DoubleWhereUniqueInput[] | No |
| update | DoubleUpdateWithWhereUniqueWithoutGamesInput | DoubleUpdateWithWhereUniqueWithoutGamesInput[] | No |
| updateMany | DoubleUpdateManyWithWhereWithoutGamesInput | DoubleUpdateManyWithWhereWithoutGamesInput[] | No |
| deleteMany | DoubleScalarWhereInput | DoubleScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | EventCreateWithoutGamesInput | EventCreateWithoutGamesInput[] | EventUncheckedCreateWithoutGamesInput | EventUncheckedCreateWithoutGamesInput[] | No |
| connectOrCreate | EventCreateOrConnectWithoutGamesInput | EventCreateOrConnectWithoutGamesInput[] | No |
| upsert | EventUpsertWithWhereUniqueWithoutGamesInput | EventUpsertWithWhereUniqueWithoutGamesInput[] | No |
| set | EventWhereUniqueInput | EventWhereUniqueInput[] | No |
| disconnect | EventWhereUniqueInput | EventWhereUniqueInput[] | No |
| delete | EventWhereUniqueInput | EventWhereUniqueInput[] | No |
| connect | EventWhereUniqueInput | EventWhereUniqueInput[] | No |
| update | EventUpdateWithWhereUniqueWithoutGamesInput | EventUpdateWithWhereUniqueWithoutGamesInput[] | No |
| updateMany | EventUpdateManyWithWhereWithoutGamesInput | EventUpdateManyWithWhereWithoutGamesInput[] | No |
| deleteMany | EventScalarWhereInput | EventScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | PlayerCreateWithoutUserInput | PlayerUncheckedCreateWithoutUserInput | No |
| connectOrCreate | PlayerCreateOrConnectWithoutUserInput | No |
| connect | PlayerWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| set | Role | No |
| Name | Type | Nullable |
|---|---|---|
| create | PlayerCreateWithoutUserInput | PlayerUncheckedCreateWithoutUserInput | No |
| connectOrCreate | PlayerCreateOrConnectWithoutUserInput | No |
| upsert | PlayerUpsertWithoutUserInput | No |
| disconnect | Boolean | PlayerWhereInput | No |
| delete | Boolean | PlayerWhereInput | No |
| connect | PlayerWhereUniqueInput | No |
| update | PlayerUpdateToOneWithWhereWithoutUserInput | PlayerUpdateWithoutUserInput | PlayerUncheckedUpdateWithoutUserInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | PlayerCreateWithoutInvitesInput | PlayerCreateWithoutInvitesInput[] | PlayerUncheckedCreateWithoutInvitesInput | PlayerUncheckedCreateWithoutInvitesInput[] | No |
| connectOrCreate | PlayerCreateOrConnectWithoutInvitesInput | PlayerCreateOrConnectWithoutInvitesInput[] | No |
| connect | PlayerWhereUniqueInput | PlayerWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | DoubleCreateWithoutInvitesInput | DoubleUncheckedCreateWithoutInvitesInput | No |
| connectOrCreate | DoubleCreateOrConnectWithoutInvitesInput | No |
| connect | DoubleWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | EventCreateWithoutInviteInput | EventUncheckedCreateWithoutInviteInput | No |
| connectOrCreate | EventCreateOrConnectWithoutInviteInput | No |
| connect | EventWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | MatchCreateWithoutInviteInput | MatchUncheckedCreateWithoutInviteInput | No |
| connectOrCreate | MatchCreateOrConnectWithoutInviteInput | No |
| connect | MatchWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | PlayerCreateWithoutInvitesInput | PlayerCreateWithoutInvitesInput[] | PlayerUncheckedCreateWithoutInvitesInput | PlayerUncheckedCreateWithoutInvitesInput[] | No |
| connectOrCreate | PlayerCreateOrConnectWithoutInvitesInput | PlayerCreateOrConnectWithoutInvitesInput[] | No |
| connect | PlayerWhereUniqueInput | PlayerWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| set | InviteType | No |
| Name | Type | Nullable |
|---|---|---|
| create | DoubleCreateWithoutInvitesInput | DoubleUncheckedCreateWithoutInvitesInput | No |
| connectOrCreate | DoubleCreateOrConnectWithoutInvitesInput | No |
| upsert | DoubleUpsertWithoutInvitesInput | No |
| disconnect | Boolean | DoubleWhereInput | No |
| delete | Boolean | DoubleWhereInput | No |
| connect | DoubleWhereUniqueInput | No |
| update | DoubleUpdateToOneWithWhereWithoutInvitesInput | DoubleUpdateWithoutInvitesInput | DoubleUncheckedUpdateWithoutInvitesInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | EventCreateWithoutInviteInput | EventUncheckedCreateWithoutInviteInput | No |
| connectOrCreate | EventCreateOrConnectWithoutInviteInput | No |
| upsert | EventUpsertWithoutInviteInput | No |
| disconnect | Boolean | EventWhereInput | No |
| delete | Boolean | EventWhereInput | No |
| connect | EventWhereUniqueInput | No |
| update | EventUpdateToOneWithWhereWithoutInviteInput | EventUpdateWithoutInviteInput | EventUncheckedUpdateWithoutInviteInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | MatchCreateWithoutInviteInput | MatchUncheckedCreateWithoutInviteInput | No |
| connectOrCreate | MatchCreateOrConnectWithoutInviteInput | No |
| upsert | MatchUpsertWithoutInviteInput | No |
| disconnect | Boolean | MatchWhereInput | No |
| delete | Boolean | MatchWhereInput | No |
| connect | MatchWhereUniqueInput | No |
| update | MatchUpdateToOneWithWhereWithoutInviteInput | MatchUpdateWithoutInviteInput | MatchUncheckedUpdateWithoutInviteInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | CategoryCreateWithoutPlayersInput | CategoryUncheckedCreateWithoutPlayersInput | No |
| connectOrCreate | CategoryCreateOrConnectWithoutPlayersInput | No |
| connect | CategoryWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | MatchCreateWithoutPlayersInput | MatchCreateWithoutPlayersInput[] | MatchUncheckedCreateWithoutPlayersInput | MatchUncheckedCreateWithoutPlayersInput[] | No |
| connectOrCreate | MatchCreateOrConnectWithoutPlayersInput | MatchCreateOrConnectWithoutPlayersInput[] | No |
| connect | MatchWhereUniqueInput | MatchWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | DoubleCreateWithoutPlayersInput | DoubleCreateWithoutPlayersInput[] | DoubleUncheckedCreateWithoutPlayersInput | DoubleUncheckedCreateWithoutPlayersInput[] | No |
| connectOrCreate | DoubleCreateOrConnectWithoutPlayersInput | DoubleCreateOrConnectWithoutPlayersInput[] | No |
| connect | DoubleWhereUniqueInput | DoubleWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | EventCreateWithoutPlayersInput | EventCreateWithoutPlayersInput[] | EventUncheckedCreateWithoutPlayersInput | EventUncheckedCreateWithoutPlayersInput[] | No |
| connectOrCreate | EventCreateOrConnectWithoutPlayersInput | EventCreateOrConnectWithoutPlayersInput[] | No |
| connect | EventWhereUniqueInput | EventWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | UserCreateWithoutPlayerInput | UserUncheckedCreateWithoutPlayerInput | No |
| connectOrCreate | UserCreateOrConnectWithoutPlayerInput | No |
| connect | UserWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | InviteCreateWithoutPlayersInput | InviteCreateWithoutPlayersInput[] | InviteUncheckedCreateWithoutPlayersInput | InviteUncheckedCreateWithoutPlayersInput[] | No |
| connectOrCreate | InviteCreateOrConnectWithoutPlayersInput | InviteCreateOrConnectWithoutPlayersInput[] | No |
| connect | InviteWhereUniqueInput | InviteWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | MatchCreateWithoutPlayersInput | MatchCreateWithoutPlayersInput[] | MatchUncheckedCreateWithoutPlayersInput | MatchUncheckedCreateWithoutPlayersInput[] | No |
| connectOrCreate | MatchCreateOrConnectWithoutPlayersInput | MatchCreateOrConnectWithoutPlayersInput[] | No |
| connect | MatchWhereUniqueInput | MatchWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | DoubleCreateWithoutPlayersInput | DoubleCreateWithoutPlayersInput[] | DoubleUncheckedCreateWithoutPlayersInput | DoubleUncheckedCreateWithoutPlayersInput[] | No |
| connectOrCreate | DoubleCreateOrConnectWithoutPlayersInput | DoubleCreateOrConnectWithoutPlayersInput[] | No |
| connect | DoubleWhereUniqueInput | DoubleWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | EventCreateWithoutPlayersInput | EventCreateWithoutPlayersInput[] | EventUncheckedCreateWithoutPlayersInput | EventUncheckedCreateWithoutPlayersInput[] | No |
| connectOrCreate | EventCreateOrConnectWithoutPlayersInput | EventCreateOrConnectWithoutPlayersInput[] | No |
| connect | EventWhereUniqueInput | EventWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | UserCreateWithoutPlayerInput | UserUncheckedCreateWithoutPlayerInput | No |
| connectOrCreate | UserCreateOrConnectWithoutPlayerInput | No |
| connect | UserWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | InviteCreateWithoutPlayersInput | InviteCreateWithoutPlayersInput[] | InviteUncheckedCreateWithoutPlayersInput | InviteUncheckedCreateWithoutPlayersInput[] | No |
| connectOrCreate | InviteCreateOrConnectWithoutPlayersInput | InviteCreateOrConnectWithoutPlayersInput[] | No |
| connect | InviteWhereUniqueInput | InviteWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| set | PlayerPosition | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| create | CategoryCreateWithoutPlayersInput | CategoryUncheckedCreateWithoutPlayersInput | No |
| connectOrCreate | CategoryCreateOrConnectWithoutPlayersInput | No |
| upsert | CategoryUpsertWithoutPlayersInput | No |
| connect | CategoryWhereUniqueInput | No |
| update | CategoryUpdateToOneWithWhereWithoutPlayersInput | CategoryUpdateWithoutPlayersInput | CategoryUncheckedUpdateWithoutPlayersInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | MatchCreateWithoutPlayersInput | MatchCreateWithoutPlayersInput[] | MatchUncheckedCreateWithoutPlayersInput | MatchUncheckedCreateWithoutPlayersInput[] | No |
| connectOrCreate | MatchCreateOrConnectWithoutPlayersInput | MatchCreateOrConnectWithoutPlayersInput[] | No |
| upsert | MatchUpsertWithWhereUniqueWithoutPlayersInput | MatchUpsertWithWhereUniqueWithoutPlayersInput[] | No |
| set | MatchWhereUniqueInput | MatchWhereUniqueInput[] | No |
| disconnect | MatchWhereUniqueInput | MatchWhereUniqueInput[] | No |
| delete | MatchWhereUniqueInput | MatchWhereUniqueInput[] | No |
| connect | MatchWhereUniqueInput | MatchWhereUniqueInput[] | No |
| update | MatchUpdateWithWhereUniqueWithoutPlayersInput | MatchUpdateWithWhereUniqueWithoutPlayersInput[] | No |
| updateMany | MatchUpdateManyWithWhereWithoutPlayersInput | MatchUpdateManyWithWhereWithoutPlayersInput[] | No |
| deleteMany | MatchScalarWhereInput | MatchScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | EventCreateWithoutPlayersInput | EventCreateWithoutPlayersInput[] | EventUncheckedCreateWithoutPlayersInput | EventUncheckedCreateWithoutPlayersInput[] | No |
| connectOrCreate | EventCreateOrConnectWithoutPlayersInput | EventCreateOrConnectWithoutPlayersInput[] | No |
| upsert | EventUpsertWithWhereUniqueWithoutPlayersInput | EventUpsertWithWhereUniqueWithoutPlayersInput[] | No |
| set | EventWhereUniqueInput | EventWhereUniqueInput[] | No |
| disconnect | EventWhereUniqueInput | EventWhereUniqueInput[] | No |
| delete | EventWhereUniqueInput | EventWhereUniqueInput[] | No |
| connect | EventWhereUniqueInput | EventWhereUniqueInput[] | No |
| update | EventUpdateWithWhereUniqueWithoutPlayersInput | EventUpdateWithWhereUniqueWithoutPlayersInput[] | No |
| updateMany | EventUpdateManyWithWhereWithoutPlayersInput | EventUpdateManyWithWhereWithoutPlayersInput[] | No |
| deleteMany | EventScalarWhereInput | EventScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | UserCreateWithoutPlayerInput | UserUncheckedCreateWithoutPlayerInput | No |
| connectOrCreate | UserCreateOrConnectWithoutPlayerInput | No |
| upsert | UserUpsertWithoutPlayerInput | No |
| disconnect | Boolean | UserWhereInput | No |
| delete | Boolean | UserWhereInput | No |
| connect | UserWhereUniqueInput | No |
| update | UserUpdateToOneWithWhereWithoutPlayerInput | UserUpdateWithoutPlayerInput | UserUncheckedUpdateWithoutPlayerInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | MatchCreateWithoutPlayersInput | MatchCreateWithoutPlayersInput[] | MatchUncheckedCreateWithoutPlayersInput | MatchUncheckedCreateWithoutPlayersInput[] | No |
| connectOrCreate | MatchCreateOrConnectWithoutPlayersInput | MatchCreateOrConnectWithoutPlayersInput[] | No |
| upsert | MatchUpsertWithWhereUniqueWithoutPlayersInput | MatchUpsertWithWhereUniqueWithoutPlayersInput[] | No |
| set | MatchWhereUniqueInput | MatchWhereUniqueInput[] | No |
| disconnect | MatchWhereUniqueInput | MatchWhereUniqueInput[] | No |
| delete | MatchWhereUniqueInput | MatchWhereUniqueInput[] | No |
| connect | MatchWhereUniqueInput | MatchWhereUniqueInput[] | No |
| update | MatchUpdateWithWhereUniqueWithoutPlayersInput | MatchUpdateWithWhereUniqueWithoutPlayersInput[] | No |
| updateMany | MatchUpdateManyWithWhereWithoutPlayersInput | MatchUpdateManyWithWhereWithoutPlayersInput[] | No |
| deleteMany | MatchScalarWhereInput | MatchScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | EventCreateWithoutPlayersInput | EventCreateWithoutPlayersInput[] | EventUncheckedCreateWithoutPlayersInput | EventUncheckedCreateWithoutPlayersInput[] | No |
| connectOrCreate | EventCreateOrConnectWithoutPlayersInput | EventCreateOrConnectWithoutPlayersInput[] | No |
| upsert | EventUpsertWithWhereUniqueWithoutPlayersInput | EventUpsertWithWhereUniqueWithoutPlayersInput[] | No |
| set | EventWhereUniqueInput | EventWhereUniqueInput[] | No |
| disconnect | EventWhereUniqueInput | EventWhereUniqueInput[] | No |
| delete | EventWhereUniqueInput | EventWhereUniqueInput[] | No |
| connect | EventWhereUniqueInput | EventWhereUniqueInput[] | No |
| update | EventUpdateWithWhereUniqueWithoutPlayersInput | EventUpdateWithWhereUniqueWithoutPlayersInput[] | No |
| updateMany | EventUpdateManyWithWhereWithoutPlayersInput | EventUpdateManyWithWhereWithoutPlayersInput[] | No |
| deleteMany | EventScalarWhereInput | EventScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | UserCreateWithoutPlayerInput | UserUncheckedCreateWithoutPlayerInput | No |
| connectOrCreate | UserCreateOrConnectWithoutPlayerInput | No |
| upsert | UserUpsertWithoutPlayerInput | No |
| disconnect | Boolean | UserWhereInput | No |
| delete | Boolean | UserWhereInput | No |
| connect | UserWhereUniqueInput | No |
| update | UserUpdateToOneWithWhereWithoutPlayerInput | UserUpdateWithoutPlayerInput | UserUncheckedUpdateWithoutPlayerInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | PlayerCreateWithoutDoublesInput | PlayerCreateWithoutDoublesInput[] | PlayerUncheckedCreateWithoutDoublesInput | PlayerUncheckedCreateWithoutDoublesInput[] | No |
| connectOrCreate | PlayerCreateOrConnectWithoutDoublesInput | PlayerCreateOrConnectWithoutDoublesInput[] | No |
| connect | PlayerWhereUniqueInput | PlayerWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | MatchCreateWithoutDoublesInput | MatchCreateWithoutDoublesInput[] | MatchUncheckedCreateWithoutDoublesInput | MatchUncheckedCreateWithoutDoublesInput[] | No |
| connectOrCreate | MatchCreateOrConnectWithoutDoublesInput | MatchCreateOrConnectWithoutDoublesInput[] | No |
| connect | MatchWhereUniqueInput | MatchWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | CategoryCreateWithoutDoublesInput | CategoryUncheckedCreateWithoutDoublesInput | No |
| connectOrCreate | CategoryCreateOrConnectWithoutDoublesInput | No |
| connect | CategoryWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | GameCreateWithoutDoublesInput | GameCreateWithoutDoublesInput[] | GameUncheckedCreateWithoutDoublesInput | GameUncheckedCreateWithoutDoublesInput[] | No |
| connectOrCreate | GameCreateOrConnectWithoutDoublesInput | GameCreateOrConnectWithoutDoublesInput[] | No |
| connect | GameWhereUniqueInput | GameWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | SetCreateWithoutDoublesInput | SetCreateWithoutDoublesInput[] | SetUncheckedCreateWithoutDoublesInput | SetUncheckedCreateWithoutDoublesInput[] | No |
| connectOrCreate | SetCreateOrConnectWithoutDoublesInput | SetCreateOrConnectWithoutDoublesInput[] | No |
| connect | SetWhereUniqueInput | SetWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | MatchCreateWithoutWinnerInput | MatchCreateWithoutWinnerInput[] | MatchUncheckedCreateWithoutWinnerInput | MatchUncheckedCreateWithoutWinnerInput[] | No |
| connectOrCreate | MatchCreateOrConnectWithoutWinnerInput | MatchCreateOrConnectWithoutWinnerInput[] | No |
| createMany | MatchCreateManyWinnerInputEnvelope | No |
| connect | MatchWhereUniqueInput | MatchWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | SetCreateWithoutWinnerInput | SetCreateWithoutWinnerInput[] | SetUncheckedCreateWithoutWinnerInput | SetUncheckedCreateWithoutWinnerInput[] | No |
| connectOrCreate | SetCreateOrConnectWithoutWinnerInput | SetCreateOrConnectWithoutWinnerInput[] | No |
| createMany | SetCreateManyWinnerInputEnvelope | No |
| connect | SetWhereUniqueInput | SetWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | GameCreateWithoutWinnerInput | GameCreateWithoutWinnerInput[] | GameUncheckedCreateWithoutWinnerInput | GameUncheckedCreateWithoutWinnerInput[] | No |
| connectOrCreate | GameCreateOrConnectWithoutWinnerInput | GameCreateOrConnectWithoutWinnerInput[] | No |
| createMany | GameCreateManyWinnerInputEnvelope | No |
| connect | GameWhereUniqueInput | GameWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | EventRequestCreateWithoutDoubleInput | EventRequestCreateWithoutDoubleInput[] | EventRequestUncheckedCreateWithoutDoubleInput | EventRequestUncheckedCreateWithoutDoubleInput[] | No |
| connectOrCreate | EventRequestCreateOrConnectWithoutDoubleInput | EventRequestCreateOrConnectWithoutDoubleInput[] | No |
| createMany | EventRequestCreateManyDoubleInputEnvelope | No |
| connect | EventRequestWhereUniqueInput | EventRequestWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | EventDoubleCreateWithoutDoubleInput | EventDoubleCreateWithoutDoubleInput[] | EventDoubleUncheckedCreateWithoutDoubleInput | EventDoubleUncheckedCreateWithoutDoubleInput[] | No |
| connectOrCreate | EventDoubleCreateOrConnectWithoutDoubleInput | EventDoubleCreateOrConnectWithoutDoubleInput[] | No |
| createMany | EventDoubleCreateManyDoubleInputEnvelope | No |
| connect | EventDoubleWhereUniqueInput | EventDoubleWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | InviteCreateWithoutDoubleInput | InviteCreateWithoutDoubleInput[] | InviteUncheckedCreateWithoutDoubleInput | InviteUncheckedCreateWithoutDoubleInput[] | No |
| connectOrCreate | InviteCreateOrConnectWithoutDoubleInput | InviteCreateOrConnectWithoutDoubleInput[] | No |
| createMany | InviteCreateManyDoubleInputEnvelope | No |
| connect | InviteWhereUniqueInput | InviteWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | PlayerCreateWithoutDoublesInput | PlayerCreateWithoutDoublesInput[] | PlayerUncheckedCreateWithoutDoublesInput | PlayerUncheckedCreateWithoutDoublesInput[] | No |
| connectOrCreate | PlayerCreateOrConnectWithoutDoublesInput | PlayerCreateOrConnectWithoutDoublesInput[] | No |
| connect | PlayerWhereUniqueInput | PlayerWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | MatchCreateWithoutDoublesInput | MatchCreateWithoutDoublesInput[] | MatchUncheckedCreateWithoutDoublesInput | MatchUncheckedCreateWithoutDoublesInput[] | No |
| connectOrCreate | MatchCreateOrConnectWithoutDoublesInput | MatchCreateOrConnectWithoutDoublesInput[] | No |
| connect | MatchWhereUniqueInput | MatchWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | GameCreateWithoutDoublesInput | GameCreateWithoutDoublesInput[] | GameUncheckedCreateWithoutDoublesInput | GameUncheckedCreateWithoutDoublesInput[] | No |
| connectOrCreate | GameCreateOrConnectWithoutDoublesInput | GameCreateOrConnectWithoutDoublesInput[] | No |
| connect | GameWhereUniqueInput | GameWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | SetCreateWithoutDoublesInput | SetCreateWithoutDoublesInput[] | SetUncheckedCreateWithoutDoublesInput | SetUncheckedCreateWithoutDoublesInput[] | No |
| connectOrCreate | SetCreateOrConnectWithoutDoublesInput | SetCreateOrConnectWithoutDoublesInput[] | No |
| connect | SetWhereUniqueInput | SetWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | MatchCreateWithoutWinnerInput | MatchCreateWithoutWinnerInput[] | MatchUncheckedCreateWithoutWinnerInput | MatchUncheckedCreateWithoutWinnerInput[] | No |
| connectOrCreate | MatchCreateOrConnectWithoutWinnerInput | MatchCreateOrConnectWithoutWinnerInput[] | No |
| createMany | MatchCreateManyWinnerInputEnvelope | No |
| connect | MatchWhereUniqueInput | MatchWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | SetCreateWithoutWinnerInput | SetCreateWithoutWinnerInput[] | SetUncheckedCreateWithoutWinnerInput | SetUncheckedCreateWithoutWinnerInput[] | No |
| connectOrCreate | SetCreateOrConnectWithoutWinnerInput | SetCreateOrConnectWithoutWinnerInput[] | No |
| createMany | SetCreateManyWinnerInputEnvelope | No |
| connect | SetWhereUniqueInput | SetWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | GameCreateWithoutWinnerInput | GameCreateWithoutWinnerInput[] | GameUncheckedCreateWithoutWinnerInput | GameUncheckedCreateWithoutWinnerInput[] | No |
| connectOrCreate | GameCreateOrConnectWithoutWinnerInput | GameCreateOrConnectWithoutWinnerInput[] | No |
| createMany | GameCreateManyWinnerInputEnvelope | No |
| connect | GameWhereUniqueInput | GameWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | EventRequestCreateWithoutDoubleInput | EventRequestCreateWithoutDoubleInput[] | EventRequestUncheckedCreateWithoutDoubleInput | EventRequestUncheckedCreateWithoutDoubleInput[] | No |
| connectOrCreate | EventRequestCreateOrConnectWithoutDoubleInput | EventRequestCreateOrConnectWithoutDoubleInput[] | No |
| createMany | EventRequestCreateManyDoubleInputEnvelope | No |
| connect | EventRequestWhereUniqueInput | EventRequestWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | EventDoubleCreateWithoutDoubleInput | EventDoubleCreateWithoutDoubleInput[] | EventDoubleUncheckedCreateWithoutDoubleInput | EventDoubleUncheckedCreateWithoutDoubleInput[] | No |
| connectOrCreate | EventDoubleCreateOrConnectWithoutDoubleInput | EventDoubleCreateOrConnectWithoutDoubleInput[] | No |
| createMany | EventDoubleCreateManyDoubleInputEnvelope | No |
| connect | EventDoubleWhereUniqueInput | EventDoubleWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | InviteCreateWithoutDoubleInput | InviteCreateWithoutDoubleInput[] | InviteUncheckedCreateWithoutDoubleInput | InviteUncheckedCreateWithoutDoubleInput[] | No |
| connectOrCreate | InviteCreateOrConnectWithoutDoubleInput | InviteCreateOrConnectWithoutDoubleInput[] | No |
| createMany | InviteCreateManyDoubleInputEnvelope | No |
| connect | InviteWhereUniqueInput | InviteWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | MatchCreateWithoutDoublesInput | MatchCreateWithoutDoublesInput[] | MatchUncheckedCreateWithoutDoublesInput | MatchUncheckedCreateWithoutDoublesInput[] | No |
| connectOrCreate | MatchCreateOrConnectWithoutDoublesInput | MatchCreateOrConnectWithoutDoublesInput[] | No |
| upsert | MatchUpsertWithWhereUniqueWithoutDoublesInput | MatchUpsertWithWhereUniqueWithoutDoublesInput[] | No |
| set | MatchWhereUniqueInput | MatchWhereUniqueInput[] | No |
| disconnect | MatchWhereUniqueInput | MatchWhereUniqueInput[] | No |
| delete | MatchWhereUniqueInput | MatchWhereUniqueInput[] | No |
| connect | MatchWhereUniqueInput | MatchWhereUniqueInput[] | No |
| update | MatchUpdateWithWhereUniqueWithoutDoublesInput | MatchUpdateWithWhereUniqueWithoutDoublesInput[] | No |
| updateMany | MatchUpdateManyWithWhereWithoutDoublesInput | MatchUpdateManyWithWhereWithoutDoublesInput[] | No |
| deleteMany | MatchScalarWhereInput | MatchScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | CategoryCreateWithoutDoublesInput | CategoryUncheckedCreateWithoutDoublesInput | No |
| connectOrCreate | CategoryCreateOrConnectWithoutDoublesInput | No |
| upsert | CategoryUpsertWithoutDoublesInput | No |
| connect | CategoryWhereUniqueInput | No |
| update | CategoryUpdateToOneWithWhereWithoutDoublesInput | CategoryUpdateWithoutDoublesInput | CategoryUncheckedUpdateWithoutDoublesInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | GameCreateWithoutDoublesInput | GameCreateWithoutDoublesInput[] | GameUncheckedCreateWithoutDoublesInput | GameUncheckedCreateWithoutDoublesInput[] | No |
| connectOrCreate | GameCreateOrConnectWithoutDoublesInput | GameCreateOrConnectWithoutDoublesInput[] | No |
| upsert | GameUpsertWithWhereUniqueWithoutDoublesInput | GameUpsertWithWhereUniqueWithoutDoublesInput[] | No |
| set | GameWhereUniqueInput | GameWhereUniqueInput[] | No |
| disconnect | GameWhereUniqueInput | GameWhereUniqueInput[] | No |
| delete | GameWhereUniqueInput | GameWhereUniqueInput[] | No |
| connect | GameWhereUniqueInput | GameWhereUniqueInput[] | No |
| update | GameUpdateWithWhereUniqueWithoutDoublesInput | GameUpdateWithWhereUniqueWithoutDoublesInput[] | No |
| updateMany | GameUpdateManyWithWhereWithoutDoublesInput | GameUpdateManyWithWhereWithoutDoublesInput[] | No |
| deleteMany | GameScalarWhereInput | GameScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | SetCreateWithoutDoublesInput | SetCreateWithoutDoublesInput[] | SetUncheckedCreateWithoutDoublesInput | SetUncheckedCreateWithoutDoublesInput[] | No |
| connectOrCreate | SetCreateOrConnectWithoutDoublesInput | SetCreateOrConnectWithoutDoublesInput[] | No |
| upsert | SetUpsertWithWhereUniqueWithoutDoublesInput | SetUpsertWithWhereUniqueWithoutDoublesInput[] | No |
| set | SetWhereUniqueInput | SetWhereUniqueInput[] | No |
| disconnect | SetWhereUniqueInput | SetWhereUniqueInput[] | No |
| delete | SetWhereUniqueInput | SetWhereUniqueInput[] | No |
| connect | SetWhereUniqueInput | SetWhereUniqueInput[] | No |
| update | SetUpdateWithWhereUniqueWithoutDoublesInput | SetUpdateWithWhereUniqueWithoutDoublesInput[] | No |
| updateMany | SetUpdateManyWithWhereWithoutDoublesInput | SetUpdateManyWithWhereWithoutDoublesInput[] | No |
| deleteMany | SetScalarWhereInput | SetScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | MatchCreateWithoutWinnerInput | MatchCreateWithoutWinnerInput[] | MatchUncheckedCreateWithoutWinnerInput | MatchUncheckedCreateWithoutWinnerInput[] | No |
| connectOrCreate | MatchCreateOrConnectWithoutWinnerInput | MatchCreateOrConnectWithoutWinnerInput[] | No |
| upsert | MatchUpsertWithWhereUniqueWithoutWinnerInput | MatchUpsertWithWhereUniqueWithoutWinnerInput[] | No |
| createMany | MatchCreateManyWinnerInputEnvelope | No |
| set | MatchWhereUniqueInput | MatchWhereUniqueInput[] | No |
| disconnect | MatchWhereUniqueInput | MatchWhereUniqueInput[] | No |
| delete | MatchWhereUniqueInput | MatchWhereUniqueInput[] | No |
| connect | MatchWhereUniqueInput | MatchWhereUniqueInput[] | No |
| update | MatchUpdateWithWhereUniqueWithoutWinnerInput | MatchUpdateWithWhereUniqueWithoutWinnerInput[] | No |
| updateMany | MatchUpdateManyWithWhereWithoutWinnerInput | MatchUpdateManyWithWhereWithoutWinnerInput[] | No |
| deleteMany | MatchScalarWhereInput | MatchScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | SetCreateWithoutWinnerInput | SetCreateWithoutWinnerInput[] | SetUncheckedCreateWithoutWinnerInput | SetUncheckedCreateWithoutWinnerInput[] | No |
| connectOrCreate | SetCreateOrConnectWithoutWinnerInput | SetCreateOrConnectWithoutWinnerInput[] | No |
| upsert | SetUpsertWithWhereUniqueWithoutWinnerInput | SetUpsertWithWhereUniqueWithoutWinnerInput[] | No |
| createMany | SetCreateManyWinnerInputEnvelope | No |
| set | SetWhereUniqueInput | SetWhereUniqueInput[] | No |
| disconnect | SetWhereUniqueInput | SetWhereUniqueInput[] | No |
| delete | SetWhereUniqueInput | SetWhereUniqueInput[] | No |
| connect | SetWhereUniqueInput | SetWhereUniqueInput[] | No |
| update | SetUpdateWithWhereUniqueWithoutWinnerInput | SetUpdateWithWhereUniqueWithoutWinnerInput[] | No |
| updateMany | SetUpdateManyWithWhereWithoutWinnerInput | SetUpdateManyWithWhereWithoutWinnerInput[] | No |
| deleteMany | SetScalarWhereInput | SetScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | GameCreateWithoutWinnerInput | GameCreateWithoutWinnerInput[] | GameUncheckedCreateWithoutWinnerInput | GameUncheckedCreateWithoutWinnerInput[] | No |
| connectOrCreate | GameCreateOrConnectWithoutWinnerInput | GameCreateOrConnectWithoutWinnerInput[] | No |
| upsert | GameUpsertWithWhereUniqueWithoutWinnerInput | GameUpsertWithWhereUniqueWithoutWinnerInput[] | No |
| createMany | GameCreateManyWinnerInputEnvelope | No |
| set | GameWhereUniqueInput | GameWhereUniqueInput[] | No |
| disconnect | GameWhereUniqueInput | GameWhereUniqueInput[] | No |
| delete | GameWhereUniqueInput | GameWhereUniqueInput[] | No |
| connect | GameWhereUniqueInput | GameWhereUniqueInput[] | No |
| update | GameUpdateWithWhereUniqueWithoutWinnerInput | GameUpdateWithWhereUniqueWithoutWinnerInput[] | No |
| updateMany | GameUpdateManyWithWhereWithoutWinnerInput | GameUpdateManyWithWhereWithoutWinnerInput[] | No |
| deleteMany | GameScalarWhereInput | GameScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | InviteCreateWithoutDoubleInput | InviteCreateWithoutDoubleInput[] | InviteUncheckedCreateWithoutDoubleInput | InviteUncheckedCreateWithoutDoubleInput[] | No |
| connectOrCreate | InviteCreateOrConnectWithoutDoubleInput | InviteCreateOrConnectWithoutDoubleInput[] | No |
| upsert | InviteUpsertWithWhereUniqueWithoutDoubleInput | InviteUpsertWithWhereUniqueWithoutDoubleInput[] | No |
| createMany | InviteCreateManyDoubleInputEnvelope | No |
| set | InviteWhereUniqueInput | InviteWhereUniqueInput[] | No |
| disconnect | InviteWhereUniqueInput | InviteWhereUniqueInput[] | No |
| delete | InviteWhereUniqueInput | InviteWhereUniqueInput[] | No |
| connect | InviteWhereUniqueInput | InviteWhereUniqueInput[] | No |
| update | InviteUpdateWithWhereUniqueWithoutDoubleInput | InviteUpdateWithWhereUniqueWithoutDoubleInput[] | No |
| updateMany | InviteUpdateManyWithWhereWithoutDoubleInput | InviteUpdateManyWithWhereWithoutDoubleInput[] | No |
| deleteMany | InviteScalarWhereInput | InviteScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | MatchCreateWithoutDoublesInput | MatchCreateWithoutDoublesInput[] | MatchUncheckedCreateWithoutDoublesInput | MatchUncheckedCreateWithoutDoublesInput[] | No |
| connectOrCreate | MatchCreateOrConnectWithoutDoublesInput | MatchCreateOrConnectWithoutDoublesInput[] | No |
| upsert | MatchUpsertWithWhereUniqueWithoutDoublesInput | MatchUpsertWithWhereUniqueWithoutDoublesInput[] | No |
| set | MatchWhereUniqueInput | MatchWhereUniqueInput[] | No |
| disconnect | MatchWhereUniqueInput | MatchWhereUniqueInput[] | No |
| delete | MatchWhereUniqueInput | MatchWhereUniqueInput[] | No |
| connect | MatchWhereUniqueInput | MatchWhereUniqueInput[] | No |
| update | MatchUpdateWithWhereUniqueWithoutDoublesInput | MatchUpdateWithWhereUniqueWithoutDoublesInput[] | No |
| updateMany | MatchUpdateManyWithWhereWithoutDoublesInput | MatchUpdateManyWithWhereWithoutDoublesInput[] | No |
| deleteMany | MatchScalarWhereInput | MatchScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | GameCreateWithoutDoublesInput | GameCreateWithoutDoublesInput[] | GameUncheckedCreateWithoutDoublesInput | GameUncheckedCreateWithoutDoublesInput[] | No |
| connectOrCreate | GameCreateOrConnectWithoutDoublesInput | GameCreateOrConnectWithoutDoublesInput[] | No |
| upsert | GameUpsertWithWhereUniqueWithoutDoublesInput | GameUpsertWithWhereUniqueWithoutDoublesInput[] | No |
| set | GameWhereUniqueInput | GameWhereUniqueInput[] | No |
| disconnect | GameWhereUniqueInput | GameWhereUniqueInput[] | No |
| delete | GameWhereUniqueInput | GameWhereUniqueInput[] | No |
| connect | GameWhereUniqueInput | GameWhereUniqueInput[] | No |
| update | GameUpdateWithWhereUniqueWithoutDoublesInput | GameUpdateWithWhereUniqueWithoutDoublesInput[] | No |
| updateMany | GameUpdateManyWithWhereWithoutDoublesInput | GameUpdateManyWithWhereWithoutDoublesInput[] | No |
| deleteMany | GameScalarWhereInput | GameScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | SetCreateWithoutDoublesInput | SetCreateWithoutDoublesInput[] | SetUncheckedCreateWithoutDoublesInput | SetUncheckedCreateWithoutDoublesInput[] | No |
| connectOrCreate | SetCreateOrConnectWithoutDoublesInput | SetCreateOrConnectWithoutDoublesInput[] | No |
| upsert | SetUpsertWithWhereUniqueWithoutDoublesInput | SetUpsertWithWhereUniqueWithoutDoublesInput[] | No |
| set | SetWhereUniqueInput | SetWhereUniqueInput[] | No |
| disconnect | SetWhereUniqueInput | SetWhereUniqueInput[] | No |
| delete | SetWhereUniqueInput | SetWhereUniqueInput[] | No |
| connect | SetWhereUniqueInput | SetWhereUniqueInput[] | No |
| update | SetUpdateWithWhereUniqueWithoutDoublesInput | SetUpdateWithWhereUniqueWithoutDoublesInput[] | No |
| updateMany | SetUpdateManyWithWhereWithoutDoublesInput | SetUpdateManyWithWhereWithoutDoublesInput[] | No |
| deleteMany | SetScalarWhereInput | SetScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | MatchCreateWithoutWinnerInput | MatchCreateWithoutWinnerInput[] | MatchUncheckedCreateWithoutWinnerInput | MatchUncheckedCreateWithoutWinnerInput[] | No |
| connectOrCreate | MatchCreateOrConnectWithoutWinnerInput | MatchCreateOrConnectWithoutWinnerInput[] | No |
| upsert | MatchUpsertWithWhereUniqueWithoutWinnerInput | MatchUpsertWithWhereUniqueWithoutWinnerInput[] | No |
| createMany | MatchCreateManyWinnerInputEnvelope | No |
| set | MatchWhereUniqueInput | MatchWhereUniqueInput[] | No |
| disconnect | MatchWhereUniqueInput | MatchWhereUniqueInput[] | No |
| delete | MatchWhereUniqueInput | MatchWhereUniqueInput[] | No |
| connect | MatchWhereUniqueInput | MatchWhereUniqueInput[] | No |
| update | MatchUpdateWithWhereUniqueWithoutWinnerInput | MatchUpdateWithWhereUniqueWithoutWinnerInput[] | No |
| updateMany | MatchUpdateManyWithWhereWithoutWinnerInput | MatchUpdateManyWithWhereWithoutWinnerInput[] | No |
| deleteMany | MatchScalarWhereInput | MatchScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | SetCreateWithoutWinnerInput | SetCreateWithoutWinnerInput[] | SetUncheckedCreateWithoutWinnerInput | SetUncheckedCreateWithoutWinnerInput[] | No |
| connectOrCreate | SetCreateOrConnectWithoutWinnerInput | SetCreateOrConnectWithoutWinnerInput[] | No |
| upsert | SetUpsertWithWhereUniqueWithoutWinnerInput | SetUpsertWithWhereUniqueWithoutWinnerInput[] | No |
| createMany | SetCreateManyWinnerInputEnvelope | No |
| set | SetWhereUniqueInput | SetWhereUniqueInput[] | No |
| disconnect | SetWhereUniqueInput | SetWhereUniqueInput[] | No |
| delete | SetWhereUniqueInput | SetWhereUniqueInput[] | No |
| connect | SetWhereUniqueInput | SetWhereUniqueInput[] | No |
| update | SetUpdateWithWhereUniqueWithoutWinnerInput | SetUpdateWithWhereUniqueWithoutWinnerInput[] | No |
| updateMany | SetUpdateManyWithWhereWithoutWinnerInput | SetUpdateManyWithWhereWithoutWinnerInput[] | No |
| deleteMany | SetScalarWhereInput | SetScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | GameCreateWithoutWinnerInput | GameCreateWithoutWinnerInput[] | GameUncheckedCreateWithoutWinnerInput | GameUncheckedCreateWithoutWinnerInput[] | No |
| connectOrCreate | GameCreateOrConnectWithoutWinnerInput | GameCreateOrConnectWithoutWinnerInput[] | No |
| upsert | GameUpsertWithWhereUniqueWithoutWinnerInput | GameUpsertWithWhereUniqueWithoutWinnerInput[] | No |
| createMany | GameCreateManyWinnerInputEnvelope | No |
| set | GameWhereUniqueInput | GameWhereUniqueInput[] | No |
| disconnect | GameWhereUniqueInput | GameWhereUniqueInput[] | No |
| delete | GameWhereUniqueInput | GameWhereUniqueInput[] | No |
| connect | GameWhereUniqueInput | GameWhereUniqueInput[] | No |
| update | GameUpdateWithWhereUniqueWithoutWinnerInput | GameUpdateWithWhereUniqueWithoutWinnerInput[] | No |
| updateMany | GameUpdateManyWithWhereWithoutWinnerInput | GameUpdateManyWithWhereWithoutWinnerInput[] | No |
| deleteMany | GameScalarWhereInput | GameScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | InviteCreateWithoutDoubleInput | InviteCreateWithoutDoubleInput[] | InviteUncheckedCreateWithoutDoubleInput | InviteUncheckedCreateWithoutDoubleInput[] | No |
| connectOrCreate | InviteCreateOrConnectWithoutDoubleInput | InviteCreateOrConnectWithoutDoubleInput[] | No |
| upsert | InviteUpsertWithWhereUniqueWithoutDoubleInput | InviteUpsertWithWhereUniqueWithoutDoubleInput[] | No |
| createMany | InviteCreateManyDoubleInputEnvelope | No |
| set | InviteWhereUniqueInput | InviteWhereUniqueInput[] | No |
| disconnect | InviteWhereUniqueInput | InviteWhereUniqueInput[] | No |
| delete | InviteWhereUniqueInput | InviteWhereUniqueInput[] | No |
| connect | InviteWhereUniqueInput | InviteWhereUniqueInput[] | No |
| update | InviteUpdateWithWhereUniqueWithoutDoubleInput | InviteUpdateWithWhereUniqueWithoutDoubleInput[] | No |
| updateMany | InviteUpdateManyWithWhereWithoutDoubleInput | InviteUpdateManyWithWhereWithoutDoubleInput[] | No |
| deleteMany | InviteScalarWhereInput | InviteScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | EventCreateWithoutPlacesInput | EventCreateWithoutPlacesInput[] | EventUncheckedCreateWithoutPlacesInput | EventUncheckedCreateWithoutPlacesInput[] | No |
| connectOrCreate | EventCreateOrConnectWithoutPlacesInput | EventCreateOrConnectWithoutPlacesInput[] | No |
| connect | EventWhereUniqueInput | EventWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | CourtCreateWithoutPlaceInput | CourtCreateWithoutPlaceInput[] | CourtUncheckedCreateWithoutPlaceInput | CourtUncheckedCreateWithoutPlaceInput[] | No |
| connectOrCreate | CourtCreateOrConnectWithoutPlaceInput | CourtCreateOrConnectWithoutPlaceInput[] | No |
| createMany | CourtCreateManyPlaceInputEnvelope | No |
| connect | CourtWhereUniqueInput | CourtWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | EventCreateWithoutPlacesInput | EventCreateWithoutPlacesInput[] | EventUncheckedCreateWithoutPlacesInput | EventUncheckedCreateWithoutPlacesInput[] | No |
| connectOrCreate | EventCreateOrConnectWithoutPlacesInput | EventCreateOrConnectWithoutPlacesInput[] | No |
| connect | EventWhereUniqueInput | EventWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | CourtCreateWithoutPlaceInput | CourtCreateWithoutPlaceInput[] | CourtUncheckedCreateWithoutPlaceInput | CourtUncheckedCreateWithoutPlaceInput[] | No |
| connectOrCreate | CourtCreateOrConnectWithoutPlaceInput | CourtCreateOrConnectWithoutPlaceInput[] | No |
| createMany | CourtCreateManyPlaceInputEnvelope | No |
| connect | CourtWhereUniqueInput | CourtWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | EventCreateWithoutPlacesInput | EventCreateWithoutPlacesInput[] | EventUncheckedCreateWithoutPlacesInput | EventUncheckedCreateWithoutPlacesInput[] | No |
| connectOrCreate | EventCreateOrConnectWithoutPlacesInput | EventCreateOrConnectWithoutPlacesInput[] | No |
| upsert | EventUpsertWithWhereUniqueWithoutPlacesInput | EventUpsertWithWhereUniqueWithoutPlacesInput[] | No |
| set | EventWhereUniqueInput | EventWhereUniqueInput[] | No |
| disconnect | EventWhereUniqueInput | EventWhereUniqueInput[] | No |
| delete | EventWhereUniqueInput | EventWhereUniqueInput[] | No |
| connect | EventWhereUniqueInput | EventWhereUniqueInput[] | No |
| update | EventUpdateWithWhereUniqueWithoutPlacesInput | EventUpdateWithWhereUniqueWithoutPlacesInput[] | No |
| updateMany | EventUpdateManyWithWhereWithoutPlacesInput | EventUpdateManyWithWhereWithoutPlacesInput[] | No |
| deleteMany | EventScalarWhereInput | EventScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | CourtCreateWithoutPlaceInput | CourtCreateWithoutPlaceInput[] | CourtUncheckedCreateWithoutPlaceInput | CourtUncheckedCreateWithoutPlaceInput[] | No |
| connectOrCreate | CourtCreateOrConnectWithoutPlaceInput | CourtCreateOrConnectWithoutPlaceInput[] | No |
| upsert | CourtUpsertWithWhereUniqueWithoutPlaceInput | CourtUpsertWithWhereUniqueWithoutPlaceInput[] | No |
| createMany | CourtCreateManyPlaceInputEnvelope | No |
| set | CourtWhereUniqueInput | CourtWhereUniqueInput[] | No |
| disconnect | CourtWhereUniqueInput | CourtWhereUniqueInput[] | No |
| delete | CourtWhereUniqueInput | CourtWhereUniqueInput[] | No |
| connect | CourtWhereUniqueInput | CourtWhereUniqueInput[] | No |
| update | CourtUpdateWithWhereUniqueWithoutPlaceInput | CourtUpdateWithWhereUniqueWithoutPlaceInput[] | No |
| updateMany | CourtUpdateManyWithWhereWithoutPlaceInput | CourtUpdateManyWithWhereWithoutPlaceInput[] | No |
| deleteMany | CourtScalarWhereInput | CourtScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | EventCreateWithoutPlacesInput | EventCreateWithoutPlacesInput[] | EventUncheckedCreateWithoutPlacesInput | EventUncheckedCreateWithoutPlacesInput[] | No |
| connectOrCreate | EventCreateOrConnectWithoutPlacesInput | EventCreateOrConnectWithoutPlacesInput[] | No |
| upsert | EventUpsertWithWhereUniqueWithoutPlacesInput | EventUpsertWithWhereUniqueWithoutPlacesInput[] | No |
| set | EventWhereUniqueInput | EventWhereUniqueInput[] | No |
| disconnect | EventWhereUniqueInput | EventWhereUniqueInput[] | No |
| delete | EventWhereUniqueInput | EventWhereUniqueInput[] | No |
| connect | EventWhereUniqueInput | EventWhereUniqueInput[] | No |
| update | EventUpdateWithWhereUniqueWithoutPlacesInput | EventUpdateWithWhereUniqueWithoutPlacesInput[] | No |
| updateMany | EventUpdateManyWithWhereWithoutPlacesInput | EventUpdateManyWithWhereWithoutPlacesInput[] | No |
| deleteMany | EventScalarWhereInput | EventScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | CourtCreateWithoutPlaceInput | CourtCreateWithoutPlaceInput[] | CourtUncheckedCreateWithoutPlaceInput | CourtUncheckedCreateWithoutPlaceInput[] | No |
| connectOrCreate | CourtCreateOrConnectWithoutPlaceInput | CourtCreateOrConnectWithoutPlaceInput[] | No |
| upsert | CourtUpsertWithWhereUniqueWithoutPlaceInput | CourtUpsertWithWhereUniqueWithoutPlaceInput[] | No |
| createMany | CourtCreateManyPlaceInputEnvelope | No |
| set | CourtWhereUniqueInput | CourtWhereUniqueInput[] | No |
| disconnect | CourtWhereUniqueInput | CourtWhereUniqueInput[] | No |
| delete | CourtWhereUniqueInput | CourtWhereUniqueInput[] | No |
| connect | CourtWhereUniqueInput | CourtWhereUniqueInput[] | No |
| update | CourtUpdateWithWhereUniqueWithoutPlaceInput | CourtUpdateWithWhereUniqueWithoutPlaceInput[] | No |
| updateMany | CourtUpdateManyWithWhereWithoutPlaceInput | CourtUpdateManyWithWhereWithoutPlaceInput[] | No |
| deleteMany | CourtScalarWhereInput | CourtScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| equals | String | StringFieldRefInput | No |
| in | String | ListStringFieldRefInput | No |
| notIn | String | ListStringFieldRefInput | No |
| lt | String | StringFieldRefInput | No |
| lte | String | StringFieldRefInput | No |
| gt | String | StringFieldRefInput | No |
| gte | String | StringFieldRefInput | No |
| contains | String | StringFieldRefInput | No |
| startsWith | String | StringFieldRefInput | No |
| endsWith | String | StringFieldRefInput | No |
| not | String | NestedStringFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | Boolean | BooleanFieldRefInput | No |
| not | Boolean | NestedBoolFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | DateTime | DateTimeFieldRefInput | Null | Yes |
| in | DateTime | ListDateTimeFieldRefInput | Null | Yes |
| notIn | DateTime | ListDateTimeFieldRefInput | Null | Yes |
| lt | DateTime | DateTimeFieldRefInput | No |
| lte | DateTime | DateTimeFieldRefInput | No |
| gt | DateTime | DateTimeFieldRefInput | No |
| gte | DateTime | DateTimeFieldRefInput | No |
| not | DateTime | NestedDateTimeNullableFilter | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| equals | Int | IntFieldRefInput | Null | Yes |
| in | Int | ListIntFieldRefInput | Null | Yes |
| notIn | Int | ListIntFieldRefInput | Null | Yes |
| lt | Int | IntFieldRefInput | No |
| lte | Int | IntFieldRefInput | No |
| gt | Int | IntFieldRefInput | No |
| gte | Int | IntFieldRefInput | No |
| not | Int | NestedIntNullableFilter | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| equals | EventType | EnumEventTypeFieldRefInput | No |
| in | EventType[] | ListEnumEventTypeFieldRefInput | No |
| notIn | EventType[] | ListEnumEventTypeFieldRefInput | No |
| not | EventType | NestedEnumEventTypeFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | MatchType | EnumMatchTypeFieldRefInput | No |
| in | MatchType[] | ListEnumMatchTypeFieldRefInput | No |
| notIn | MatchType[] | ListEnumMatchTypeFieldRefInput | No |
| not | MatchType | NestedEnumMatchTypeFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | String | StringFieldRefInput | No |
| in | String | ListStringFieldRefInput | No |
| notIn | String | ListStringFieldRefInput | No |
| lt | String | StringFieldRefInput | No |
| lte | String | StringFieldRefInput | No |
| gt | String | StringFieldRefInput | No |
| gte | String | StringFieldRefInput | No |
| contains | String | StringFieldRefInput | No |
| startsWith | String | StringFieldRefInput | No |
| endsWith | String | StringFieldRefInput | No |
| not | String | NestedStringWithAggregatesFilter | No |
| _count | NestedIntFilter | No |
| _min | NestedStringFilter | No |
| _max | NestedStringFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | Int | IntFieldRefInput | No |
| in | Int | ListIntFieldRefInput | No |
| notIn | Int | ListIntFieldRefInput | No |
| lt | Int | IntFieldRefInput | No |
| lte | Int | IntFieldRefInput | No |
| gt | Int | IntFieldRefInput | No |
| gte | Int | IntFieldRefInput | No |
| not | Int | NestedIntFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | Boolean | BooleanFieldRefInput | No |
| not | Boolean | NestedBoolWithAggregatesFilter | No |
| _count | NestedIntFilter | No |
| _min | NestedBoolFilter | No |
| _max | NestedBoolFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | DateTime | DateTimeFieldRefInput | Null | Yes |
| in | DateTime | ListDateTimeFieldRefInput | Null | Yes |
| notIn | DateTime | ListDateTimeFieldRefInput | Null | Yes |
| lt | DateTime | DateTimeFieldRefInput | No |
| lte | DateTime | DateTimeFieldRefInput | No |
| gt | DateTime | DateTimeFieldRefInput | No |
| gte | DateTime | DateTimeFieldRefInput | No |
| not | DateTime | NestedDateTimeNullableWithAggregatesFilter | Null | Yes |
| _count | NestedIntNullableFilter | No |
| _min | NestedDateTimeNullableFilter | No |
| _max | NestedDateTimeNullableFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | Int | IntFieldRefInput | Null | Yes |
| in | Int | ListIntFieldRefInput | Null | Yes |
| notIn | Int | ListIntFieldRefInput | Null | Yes |
| lt | Int | IntFieldRefInput | No |
| lte | Int | IntFieldRefInput | No |
| gt | Int | IntFieldRefInput | No |
| gte | Int | IntFieldRefInput | No |
| not | Int | NestedIntNullableWithAggregatesFilter | Null | Yes |
| _count | NestedIntNullableFilter | No |
| _avg | NestedFloatNullableFilter | No |
| _sum | NestedIntNullableFilter | No |
| _min | NestedIntNullableFilter | No |
| _max | NestedIntNullableFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | Float | FloatFieldRefInput | Null | Yes |
| in | Float | ListFloatFieldRefInput | Null | Yes |
| notIn | Float | ListFloatFieldRefInput | Null | Yes |
| lt | Float | FloatFieldRefInput | No |
| lte | Float | FloatFieldRefInput | No |
| gt | Float | FloatFieldRefInput | No |
| gte | Float | FloatFieldRefInput | No |
| not | Float | NestedFloatNullableFilter | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| equals | EventType | EnumEventTypeFieldRefInput | No |
| in | EventType[] | ListEnumEventTypeFieldRefInput | No |
| notIn | EventType[] | ListEnumEventTypeFieldRefInput | No |
| not | EventType | NestedEnumEventTypeWithAggregatesFilter | No |
| _count | NestedIntFilter | No |
| _min | NestedEnumEventTypeFilter | No |
| _max | NestedEnumEventTypeFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | MatchType | EnumMatchTypeFieldRefInput | No |
| in | MatchType[] | ListEnumMatchTypeFieldRefInput | No |
| notIn | MatchType[] | ListEnumMatchTypeFieldRefInput | No |
| not | MatchType | NestedEnumMatchTypeWithAggregatesFilter | No |
| _count | NestedIntFilter | No |
| _min | NestedEnumMatchTypeFilter | No |
| _max | NestedEnumMatchTypeFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | String | StringFieldRefInput | Null | Yes |
| in | String | ListStringFieldRefInput | Null | Yes |
| notIn | String | ListStringFieldRefInput | Null | Yes |
| lt | String | StringFieldRefInput | No |
| lte | String | StringFieldRefInput | No |
| gt | String | StringFieldRefInput | No |
| gte | String | StringFieldRefInput | No |
| contains | String | StringFieldRefInput | No |
| startsWith | String | StringFieldRefInput | No |
| endsWith | String | StringFieldRefInput | No |
| not | String | NestedStringNullableFilter | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| equals | String | StringFieldRefInput | Null | Yes |
| in | String | ListStringFieldRefInput | Null | Yes |
| notIn | String | ListStringFieldRefInput | Null | Yes |
| lt | String | StringFieldRefInput | No |
| lte | String | StringFieldRefInput | No |
| gt | String | StringFieldRefInput | No |
| gte | String | StringFieldRefInput | No |
| contains | String | StringFieldRefInput | No |
| startsWith | String | StringFieldRefInput | No |
| endsWith | String | StringFieldRefInput | No |
| not | String | NestedStringNullableWithAggregatesFilter | Null | Yes |
| _count | NestedIntNullableFilter | No |
| _min | NestedStringNullableFilter | No |
| _max | NestedStringNullableFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | RequestStatus | EnumRequestStatusFieldRefInput | No |
| in | RequestStatus[] | ListEnumRequestStatusFieldRefInput | No |
| notIn | RequestStatus[] | ListEnumRequestStatusFieldRefInput | No |
| not | RequestStatus | NestedEnumRequestStatusFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | RequestStatus | EnumRequestStatusFieldRefInput | No |
| in | RequestStatus[] | ListEnumRequestStatusFieldRefInput | No |
| notIn | RequestStatus[] | ListEnumRequestStatusFieldRefInput | No |
| not | RequestStatus | NestedEnumRequestStatusWithAggregatesFilter | No |
| _count | NestedIntFilter | No |
| _min | NestedEnumRequestStatusFilter | No |
| _max | NestedEnumRequestStatusFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | CatType | EnumCatTypeFieldRefInput | No |
| in | CatType[] | ListEnumCatTypeFieldRefInput | No |
| notIn | CatType[] | ListEnumCatTypeFieldRefInput | No |
| not | CatType | NestedEnumCatTypeFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | Int | IntFieldRefInput | No |
| in | Int | ListIntFieldRefInput | No |
| notIn | Int | ListIntFieldRefInput | No |
| lt | Int | IntFieldRefInput | No |
| lte | Int | IntFieldRefInput | No |
| gt | Int | IntFieldRefInput | No |
| gte | Int | IntFieldRefInput | No |
| not | Int | NestedIntWithAggregatesFilter | No |
| _count | NestedIntFilter | No |
| _avg | NestedFloatFilter | No |
| _sum | NestedIntFilter | No |
| _min | NestedIntFilter | No |
| _max | NestedIntFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | Float | FloatFieldRefInput | No |
| in | Float | ListFloatFieldRefInput | No |
| notIn | Float | ListFloatFieldRefInput | No |
| lt | Float | FloatFieldRefInput | No |
| lte | Float | FloatFieldRefInput | No |
| gt | Float | FloatFieldRefInput | No |
| gte | Float | FloatFieldRefInput | No |
| not | Float | NestedFloatFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | CatType | EnumCatTypeFieldRefInput | No |
| in | CatType[] | ListEnumCatTypeFieldRefInput | No |
| notIn | CatType[] | ListEnumCatTypeFieldRefInput | No |
| not | CatType | NestedEnumCatTypeWithAggregatesFilter | No |
| _count | NestedIntFilter | No |
| _min | NestedEnumCatTypeFilter | No |
| _max | NestedEnumCatTypeFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | EventMatchType | EnumEventMatchTypeFieldRefInput | No |
| in | EventMatchType[] | ListEnumEventMatchTypeFieldRefInput | No |
| notIn | EventMatchType[] | ListEnumEventMatchTypeFieldRefInput | No |
| not | EventMatchType | NestedEnumEventMatchTypeFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | EventMatchType | EnumEventMatchTypeFieldRefInput | No |
| in | EventMatchType[] | ListEnumEventMatchTypeFieldRefInput | No |
| notIn | EventMatchType[] | ListEnumEventMatchTypeFieldRefInput | No |
| not | EventMatchType | NestedEnumEventMatchTypeWithAggregatesFilter | No |
| _count | NestedIntFilter | No |
| _min | NestedEnumEventMatchTypeFilter | No |
| _max | NestedEnumEventMatchTypeFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | DateTime | DateTimeFieldRefInput | No |
| in | DateTime | ListDateTimeFieldRefInput | No |
| notIn | DateTime | ListDateTimeFieldRefInput | No |
| lt | DateTime | DateTimeFieldRefInput | No |
| lte | DateTime | DateTimeFieldRefInput | No |
| gt | DateTime | DateTimeFieldRefInput | No |
| gte | DateTime | DateTimeFieldRefInput | No |
| not | DateTime | NestedDateTimeFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | DateTime | DateTimeFieldRefInput | No |
| in | DateTime | ListDateTimeFieldRefInput | No |
| notIn | DateTime | ListDateTimeFieldRefInput | No |
| lt | DateTime | DateTimeFieldRefInput | No |
| lte | DateTime | DateTimeFieldRefInput | No |
| gt | DateTime | DateTimeFieldRefInput | No |
| gte | DateTime | DateTimeFieldRefInput | No |
| not | DateTime | NestedDateTimeWithAggregatesFilter | No |
| _count | NestedIntFilter | No |
| _min | NestedDateTimeFilter | No |
| _max | NestedDateTimeFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | SetType | EnumSetTypeFieldRefInput | No |
| in | SetType[] | ListEnumSetTypeFieldRefInput | No |
| notIn | SetType[] | ListEnumSetTypeFieldRefInput | No |
| not | SetType | NestedEnumSetTypeFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | SetType | EnumSetTypeFieldRefInput | No |
| in | SetType[] | ListEnumSetTypeFieldRefInput | No |
| notIn | SetType[] | ListEnumSetTypeFieldRefInput | No |
| not | SetType | NestedEnumSetTypeWithAggregatesFilter | No |
| _count | NestedIntFilter | No |
| _min | NestedEnumSetTypeFilter | No |
| _max | NestedEnumSetTypeFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | Role | EnumRoleFieldRefInput | No |
| in | Role[] | ListEnumRoleFieldRefInput | No |
| notIn | Role[] | ListEnumRoleFieldRefInput | No |
| not | Role | NestedEnumRoleFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | Role | EnumRoleFieldRefInput | No |
| in | Role[] | ListEnumRoleFieldRefInput | No |
| notIn | Role[] | ListEnumRoleFieldRefInput | No |
| not | Role | NestedEnumRoleWithAggregatesFilter | No |
| _count | NestedIntFilter | No |
| _min | NestedEnumRoleFilter | No |
| _max | NestedEnumRoleFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | InviteType | EnumInviteTypeFieldRefInput | No |
| in | InviteType[] | ListEnumInviteTypeFieldRefInput | No |
| notIn | InviteType[] | ListEnumInviteTypeFieldRefInput | No |
| not | InviteType | NestedEnumInviteTypeFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | InviteType | EnumInviteTypeFieldRefInput | No |
| in | InviteType[] | ListEnumInviteTypeFieldRefInput | No |
| notIn | InviteType[] | ListEnumInviteTypeFieldRefInput | No |
| not | InviteType | NestedEnumInviteTypeWithAggregatesFilter | No |
| _count | NestedIntFilter | No |
| _min | NestedEnumInviteTypeFilter | No |
| _max | NestedEnumInviteTypeFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | PlayerPosition | EnumPlayerPositionFieldRefInput | Null | Yes |
| in | PlayerPosition[] | ListEnumPlayerPositionFieldRefInput | Null | Yes |
| notIn | PlayerPosition[] | ListEnumPlayerPositionFieldRefInput | Null | Yes |
| not | PlayerPosition | NestedEnumPlayerPositionNullableFilter | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| equals | PlayerPosition | EnumPlayerPositionFieldRefInput | Null | Yes |
| in | PlayerPosition[] | ListEnumPlayerPositionFieldRefInput | Null | Yes |
| notIn | PlayerPosition[] | ListEnumPlayerPositionFieldRefInput | Null | Yes |
| not | PlayerPosition | NestedEnumPlayerPositionNullableWithAggregatesFilter | Null | Yes |
| _count | NestedIntNullableFilter | No |
| _min | NestedEnumPlayerPositionNullableFilter | No |
| _max | NestedEnumPlayerPositionNullableFilter | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| level | Int | No |
| type | CatType | No |
| players | PlayerCreateNestedManyWithoutCategoryInput | No |
| doubles | DoubleCreateNestedManyWithoutCategoryInput | No |
| matches | MatchCreateNestedManyWithoutCategoryInput | No |
| eventDoubles | EventDoubleCreateNestedManyWithoutCategoryInput | No |
| eventRequests | EventRequestCreateNestedManyWithoutCategoryInput | No |
| categoryGroup | CategoryGroupCreateNestedManyWithoutCategoryInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| level | Int | No |
| type | CatType | No |
| players | PlayerUncheckedCreateNestedManyWithoutCategoryInput | No |
| doubles | DoubleUncheckedCreateNestedManyWithoutCategoryInput | No |
| matches | MatchUncheckedCreateNestedManyWithoutCategoryInput | No |
| eventDoubles | EventDoubleUncheckedCreateNestedManyWithoutCategoryInput | No |
| eventRequests | EventRequestUncheckedCreateNestedManyWithoutCategoryInput | No |
| categoryGroup | CategoryGroupUncheckedCreateNestedManyWithoutCategoryInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | CategoryWhereUniqueInput | No |
| create | CategoryCreateWithoutEventsInput | CategoryUncheckedCreateWithoutEventsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| firstName | String | Null | Yes |
| lastName | String | Null | Yes |
| position | PlayerPosition | Null | Yes |
| category | CategoryCreateNestedOneWithoutPlayersInput | No |
| matches | MatchCreateNestedManyWithoutPlayersInput | No |
| doubles | DoubleCreateNestedManyWithoutPlayersInput | No |
| user | UserCreateNestedOneWithoutPlayerInput | No |
| invites | InviteCreateNestedManyWithoutPlayersInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| firstName | String | Null | Yes |
| lastName | String | Null | Yes |
| categoryId | String | No |
| position | PlayerPosition | Null | Yes |
| matches | MatchUncheckedCreateNestedManyWithoutPlayersInput | No |
| doubles | DoubleUncheckedCreateNestedManyWithoutPlayersInput | No |
| user | UserUncheckedCreateNestedOneWithoutPlayerInput | No |
| invites | InviteUncheckedCreateNestedManyWithoutPlayersInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | PlayerWhereUniqueInput | No |
| create | PlayerCreateWithoutEventsInput | PlayerUncheckedCreateWithoutEventsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| isFinished | Boolean | No |
| type | MatchType | No |
| players | PlayerCreateNestedManyWithoutMatchesInput | No |
| category | CategoryCreateNestedOneWithoutMatchesInput | No |
| winner | DoubleCreateNestedOneWithoutMatchesWinsInput | No |
| sets | SetCreateNestedManyWithoutMatchInput | No |
| doubles | DoubleCreateNestedManyWithoutMatchesInput | No |
| matchDate | MatchDateCreateNestedOneWithoutMatchInput | No |
| court | CourtCreateNestedOneWithoutMatchesInput | No |
| invite | InviteCreateNestedOneWithoutMatchInput | No |
| eventMatch | EventMatchCreateNestedOneWithoutMatchInput | No |
| matchRefA | MatchesReferencedCreateNestedOneWithoutMatchAInput | No |
| matchRefB | MatchesReferencedCreateNestedOneWithoutMatchBInput | No |
| matchRef | MatchesReferencedCreateNestedOneWithoutRefMatchInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| isFinished | Boolean | No |
| categoryId | String | Null | Yes |
| winnerDoublesId | String | Null | Yes |
| type | MatchType | No |
| courtId | String | Null | Yes |
| players | PlayerUncheckedCreateNestedManyWithoutMatchesInput | No |
| sets | SetUncheckedCreateNestedManyWithoutMatchInput | No |
| doubles | DoubleUncheckedCreateNestedManyWithoutMatchesInput | No |
| matchDate | MatchDateUncheckedCreateNestedOneWithoutMatchInput | No |
| invite | InviteUncheckedCreateNestedOneWithoutMatchInput | No |
| eventMatch | EventMatchUncheckedCreateNestedOneWithoutMatchInput | No |
| matchRefA | MatchesReferencedUncheckedCreateNestedOneWithoutMatchAInput | No |
| matchRefB | MatchesReferencedUncheckedCreateNestedOneWithoutMatchBInput | No |
| matchRef | MatchesReferencedUncheckedCreateNestedOneWithoutRefMatchInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | MatchWhereUniqueInput | No |
| create | MatchCreateWithoutEventInput | MatchUncheckedCreateWithoutEventInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | MatchCreateManyEventInput | MatchCreateManyEventInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| name | String | Null | Yes |
| address | String | Null | Yes |
| courts | CourtCreateNestedManyWithoutPlaceInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| name | String | Null | Yes |
| address | String | Null | Yes |
| courts | CourtUncheckedCreateNestedManyWithoutPlaceInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | PlaceWhereUniqueInput | No |
| create | PlaceCreateWithoutEventsInput | PlaceUncheckedCreateWithoutEventsInput | No |
| Name | Type | Nullable |
|---|---|---|
| status | RequestStatus | No |
| double | DoubleCreateNestedOneWithoutEventRequestsInput | No |
| category | CategoryCreateNestedOneWithoutEventRequestsInput | No |
| Name | Type | Nullable |
|---|---|---|
| doubleId | String | No |
| categoryId | String | No |
| status | RequestStatus | No |
| Name | Type | Nullable |
|---|---|---|
| where | EventRequestWhereUniqueInput | No |
| create | EventRequestCreateWithoutEventInput | EventRequestUncheckedCreateWithoutEventInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | EventRequestCreateManyEventInput | EventRequestCreateManyEventInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| double | DoubleCreateNestedOneWithoutEventDoubleInput | No |
| category | CategoryCreateNestedOneWithoutEventDoublesInput | No |
| atRest | MatchDateCreateNestedOneWithoutAtRestInput | No |
| DoublesGroup | DoublesGroupCreateNestedOneWithoutEventDoublesInput | No |
| Name | Type | Nullable |
|---|---|---|
| doubleId | String | No |
| categoryId | String | No |
| atRestId | String | Null | Yes |
| doublesGroupId | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| where | EventDoubleWhereUniqueInput | No |
| create | EventDoubleCreateWithoutEventInput | EventDoubleUncheckedCreateWithoutEventInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | EventDoubleCreateManyEventInput | EventDoubleCreateManyEventInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| set | SetCreateNestedOneWithoutGamesInput | No |
| doubles | DoubleCreateNestedManyWithoutGamesInput | No |
| winner | DoubleCreateNestedOneWithoutGamesWinsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| setId | String | No |
| winnerId | String | Null | Yes |
| doubles | DoubleUncheckedCreateNestedManyWithoutGamesInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | GameWhereUniqueInput | No |
| create | GameCreateWithoutEventsInput | GameUncheckedCreateWithoutEventsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| type | SetType | No |
| number | Int | No |
| result | String | Null | Yes |
| isFinished | Boolean | No |
| doubles | DoubleCreateNestedManyWithoutSetsInput | No |
| winner | DoubleCreateNestedOneWithoutSetsWinsInput | No |
| match | MatchCreateNestedOneWithoutSetsInput | No |
| games | GameCreateNestedManyWithoutSetInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| type | SetType | No |
| number | Int | No |
| setWinnerId | String | Null | Yes |
| result | String | Null | Yes |
| matchId | String | No |
| isFinished | Boolean | No |
| doubles | DoubleUncheckedCreateNestedManyWithoutSetsInput | No |
| games | GameUncheckedCreateNestedManyWithoutSetInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | SetWhereUniqueInput | No |
| create | SetCreateWithoutEventsInput | SetUncheckedCreateWithoutEventsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| start | DateTime | No |
| finish | DateTime | No |
| match | MatchCreateNestedOneWithoutMatchDateInput | No |
| court | CourtCreateNestedOneWithoutMatchDatesInput | No |
| atRest | EventDoubleCreateNestedManyWithoutAtRestInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| matchId | String | Null | Yes |
| start | DateTime | No |
| finish | DateTime | No |
| courtId | String | No |
| atRest | EventDoubleUncheckedCreateNestedManyWithoutAtRestInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | MatchDateWhereUniqueInput | No |
| create | MatchDateCreateWithoutEventInput | MatchDateUncheckedCreateWithoutEventInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | MatchDateCreateManyEventInput | MatchDateCreateManyEventInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| name | String | No |
| isAvailable | Boolean | No |
| matches | MatchCreateNestedManyWithoutCourtInput | No |
| place | PlaceCreateNestedOneWithoutCourtsInput | No |
| matchDates | MatchDateCreateNestedManyWithoutCourtInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| name | String | No |
| isAvailable | Boolean | No |
| placeId | String | No |
| matches | MatchUncheckedCreateNestedManyWithoutCourtInput | No |
| matchDates | MatchDateUncheckedCreateNestedManyWithoutCourtInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | CourtWhereUniqueInput | No |
| create | CourtCreateWithoutEventsInput | CourtUncheckedCreateWithoutEventsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| inviteType | InviteType | No |
| inviterId | String | No |
| invitedId | String | No |
| createdAt | DateTime | No |
| players | PlayerCreateNestedManyWithoutInvitesInput | No |
| double | DoubleCreateNestedOneWithoutInvitesInput | No |
| match | MatchCreateNestedOneWithoutInviteInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| inviteType | InviteType | No |
| doublesId | String | Null | Yes |
| matchId | String | Null | Yes |
| inviterId | String | No |
| invitedId | String | No |
| createdAt | DateTime | No |
| players | PlayerUncheckedCreateNestedManyWithoutInvitesInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | InviteWhereUniqueInput | No |
| create | InviteCreateWithoutEventInput | InviteUncheckedCreateWithoutEventInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| groupsStageFinished | Boolean | No |
| categoryFinished | Boolean | No |
| isFinalMatchesCreated | Boolean | No |
| category | CategoryCreateNestedOneWithoutCategoryGroupInput | No |
| groups | DoublesGroupCreateNestedManyWithoutCategoryGroupInput | No |
| finalMatches | EventMatchCreateNestedManyWithoutCategoryGroupInput | No |
| matchesWithReference | MatchesReferencedCreateNestedManyWithoutCategoryGroupInput | No |
| firstPlace | DoubleCreateNestedOneWithoutFirstPlaceInCategoryInput | No |
| secondPlace | DoubleCreateNestedOneWithoutSecondPlaceInCategoryInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| categoryId | String | No |
| firstPlaceId | String | Null | Yes |
| secondPlaceId | String | Null | Yes |
| groupsStageFinished | Boolean | No |
| categoryFinished | Boolean | No |
| isFinalMatchesCreated | Boolean | No |
| groups | DoublesGroupUncheckedCreateNestedManyWithoutCategoryGroupInput | No |
| finalMatches | EventMatchUncheckedCreateNestedManyWithoutCategoryGroupInput | No |
| matchesWithReference | MatchesReferencedUncheckedCreateNestedManyWithoutCategoryGroupInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | CategoryGroupWhereUniqueInput | No |
| create | CategoryGroupCreateWithoutEventInput | CategoryGroupUncheckedCreateWithoutEventInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | CategoryGroupCreateManyEventInput | CategoryGroupCreateManyEventInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| number | Int | No |
| type | EventMatchType | No |
| match | MatchCreateNestedOneWithoutEventMatchInput | No |
| categoryGroup | CategoryGroupCreateNestedOneWithoutFinalMatchesInput | No |
| doublesGroup | DoublesGroupCreateNestedOneWithoutGroupMatchesInput | No |
| Name | Type | Nullable |
|---|---|---|
| number | Int | No |
| type | EventMatchType | No |
| matchId | String | No |
| categoryGroupId | String | Null | Yes |
| doublesGroupId | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| where | EventMatchWhereUniqueInput | No |
| create | EventMatchCreateWithoutEventInput | EventMatchUncheckedCreateWithoutEventInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | EventMatchCreateManyEventInput | EventMatchCreateManyEventInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| where | CategoryWhereUniqueInput | No |
| update | CategoryUpdateWithoutEventsInput | CategoryUncheckedUpdateWithoutEventsInput | No |
| create | CategoryCreateWithoutEventsInput | CategoryUncheckedCreateWithoutEventsInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | CategoryWhereUniqueInput | No |
| data | CategoryUpdateWithoutEventsInput | CategoryUncheckedUpdateWithoutEventsInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | CategoryScalarWhereInput | No |
| data | CategoryUpdateManyMutationInput | CategoryUncheckedUpdateManyWithoutEventsInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | CategoryScalarWhereInput | CategoryScalarWhereInput[] | No |
| OR | CategoryScalarWhereInput[] | No |
| NOT | CategoryScalarWhereInput | CategoryScalarWhereInput[] | No |
| id | StringFilter | String | No |
| level | IntFilter | Int | No |
| type | EnumCatTypeFilter | CatType | No |
| Name | Type | Nullable |
|---|---|---|
| where | PlayerWhereUniqueInput | No |
| update | PlayerUpdateWithoutEventsInput | PlayerUncheckedUpdateWithoutEventsInput | No |
| create | PlayerCreateWithoutEventsInput | PlayerUncheckedCreateWithoutEventsInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | PlayerWhereUniqueInput | No |
| data | PlayerUpdateWithoutEventsInput | PlayerUncheckedUpdateWithoutEventsInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | PlayerScalarWhereInput | No |
| data | PlayerUpdateManyMutationInput | PlayerUncheckedUpdateManyWithoutEventsInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | PlayerScalarWhereInput | PlayerScalarWhereInput[] | No |
| OR | PlayerScalarWhereInput[] | No |
| NOT | PlayerScalarWhereInput | PlayerScalarWhereInput[] | No |
| id | StringFilter | String | No |
| firstName | StringNullableFilter | String | Null | Yes |
| lastName | StringNullableFilter | String | Null | Yes |
| categoryId | StringFilter | String | No |
| position | EnumPlayerPositionNullableFilter | PlayerPosition | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| where | MatchWhereUniqueInput | No |
| update | MatchUpdateWithoutEventInput | MatchUncheckedUpdateWithoutEventInput | No |
| create | MatchCreateWithoutEventInput | MatchUncheckedCreateWithoutEventInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | MatchWhereUniqueInput | No |
| data | MatchUpdateWithoutEventInput | MatchUncheckedUpdateWithoutEventInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | MatchScalarWhereInput | No |
| data | MatchUpdateManyMutationInput | MatchUncheckedUpdateManyWithoutEventInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | MatchScalarWhereInput | MatchScalarWhereInput[] | No |
| OR | MatchScalarWhereInput[] | No |
| NOT | MatchScalarWhereInput | MatchScalarWhereInput[] | No |
| id | StringFilter | String | No |
| isFinished | BoolFilter | Boolean | No |
| categoryId | StringNullableFilter | String | Null | Yes |
| winnerDoublesId | StringNullableFilter | String | Null | Yes |
| eventId | StringNullableFilter | String | Null | Yes |
| type | EnumMatchTypeFilter | MatchType | No |
| courtId | StringNullableFilter | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| where | PlaceWhereUniqueInput | No |
| update | PlaceUpdateWithoutEventsInput | PlaceUncheckedUpdateWithoutEventsInput | No |
| create | PlaceCreateWithoutEventsInput | PlaceUncheckedCreateWithoutEventsInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | PlaceWhereUniqueInput | No |
| data | PlaceUpdateWithoutEventsInput | PlaceUncheckedUpdateWithoutEventsInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | PlaceScalarWhereInput | No |
| data | PlaceUpdateManyMutationInput | PlaceUncheckedUpdateManyWithoutEventsInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | PlaceScalarWhereInput | PlaceScalarWhereInput[] | No |
| OR | PlaceScalarWhereInput[] | No |
| NOT | PlaceScalarWhereInput | PlaceScalarWhereInput[] | No |
| id | StringFilter | String | No |
| name | StringNullableFilter | String | Null | Yes |
| address | StringNullableFilter | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| where | EventRequestWhereUniqueInput | No |
| update | EventRequestUpdateWithoutEventInput | EventRequestUncheckedUpdateWithoutEventInput | No |
| create | EventRequestCreateWithoutEventInput | EventRequestUncheckedCreateWithoutEventInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | EventRequestWhereUniqueInput | No |
| data | EventRequestUpdateWithoutEventInput | EventRequestUncheckedUpdateWithoutEventInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | EventRequestScalarWhereInput | No |
| data | EventRequestUpdateManyMutationInput | EventRequestUncheckedUpdateManyWithoutEventInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | EventRequestScalarWhereInput | EventRequestScalarWhereInput[] | No |
| OR | EventRequestScalarWhereInput[] | No |
| NOT | EventRequestScalarWhereInput | EventRequestScalarWhereInput[] | No |
| eventId | StringFilter | String | No |
| doubleId | StringFilter | String | No |
| categoryId | StringFilter | String | No |
| status | EnumRequestStatusFilter | RequestStatus | No |
| Name | Type | Nullable |
|---|---|---|
| where | EventDoubleWhereUniqueInput | No |
| update | EventDoubleUpdateWithoutEventInput | EventDoubleUncheckedUpdateWithoutEventInput | No |
| create | EventDoubleCreateWithoutEventInput | EventDoubleUncheckedCreateWithoutEventInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | EventDoubleWhereUniqueInput | No |
| data | EventDoubleUpdateWithoutEventInput | EventDoubleUncheckedUpdateWithoutEventInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | EventDoubleScalarWhereInput | No |
| data | EventDoubleUpdateManyMutationInput | EventDoubleUncheckedUpdateManyWithoutEventInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | EventDoubleScalarWhereInput | EventDoubleScalarWhereInput[] | No |
| OR | EventDoubleScalarWhereInput[] | No |
| NOT | EventDoubleScalarWhereInput | EventDoubleScalarWhereInput[] | No |
| eventId | StringFilter | String | No |
| doubleId | StringFilter | String | No |
| categoryId | StringFilter | String | No |
| atRestId | StringNullableFilter | String | Null | Yes |
| doublesGroupId | StringNullableFilter | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| where | GameWhereUniqueInput | No |
| update | GameUpdateWithoutEventsInput | GameUncheckedUpdateWithoutEventsInput | No |
| create | GameCreateWithoutEventsInput | GameUncheckedCreateWithoutEventsInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | GameWhereUniqueInput | No |
| data | GameUpdateWithoutEventsInput | GameUncheckedUpdateWithoutEventsInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | GameScalarWhereInput | No |
| data | GameUpdateManyMutationInput | GameUncheckedUpdateManyWithoutEventsInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | GameScalarWhereInput | GameScalarWhereInput[] | No |
| OR | GameScalarWhereInput[] | No |
| NOT | GameScalarWhereInput | GameScalarWhereInput[] | No |
| id | StringFilter | String | No |
| setId | StringFilter | String | No |
| winnerId | StringNullableFilter | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| where | SetWhereUniqueInput | No |
| update | SetUpdateWithoutEventsInput | SetUncheckedUpdateWithoutEventsInput | No |
| create | SetCreateWithoutEventsInput | SetUncheckedCreateWithoutEventsInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | SetWhereUniqueInput | No |
| data | SetUpdateWithoutEventsInput | SetUncheckedUpdateWithoutEventsInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | SetScalarWhereInput | No |
| data | SetUpdateManyMutationInput | SetUncheckedUpdateManyWithoutEventsInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | SetScalarWhereInput | SetScalarWhereInput[] | No |
| OR | SetScalarWhereInput[] | No |
| NOT | SetScalarWhereInput | SetScalarWhereInput[] | No |
| id | StringFilter | String | No |
| type | EnumSetTypeFilter | SetType | No |
| number | IntFilter | Int | No |
| setWinnerId | StringNullableFilter | String | Null | Yes |
| result | StringNullableFilter | String | Null | Yes |
| matchId | StringFilter | String | No |
| isFinished | BoolFilter | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| where | MatchDateWhereUniqueInput | No |
| update | MatchDateUpdateWithoutEventInput | MatchDateUncheckedUpdateWithoutEventInput | No |
| create | MatchDateCreateWithoutEventInput | MatchDateUncheckedCreateWithoutEventInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | MatchDateWhereUniqueInput | No |
| data | MatchDateUpdateWithoutEventInput | MatchDateUncheckedUpdateWithoutEventInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | MatchDateScalarWhereInput | No |
| data | MatchDateUpdateManyMutationInput | MatchDateUncheckedUpdateManyWithoutEventInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | MatchDateScalarWhereInput | MatchDateScalarWhereInput[] | No |
| OR | MatchDateScalarWhereInput[] | No |
| NOT | MatchDateScalarWhereInput | MatchDateScalarWhereInput[] | No |
| id | StringFilter | String | No |
| eventId | StringFilter | String | No |
| matchId | StringNullableFilter | String | Null | Yes |
| start | DateTimeFilter | DateTime | No |
| finish | DateTimeFilter | DateTime | No |
| courtId | StringFilter | String | No |
| Name | Type | Nullable |
|---|---|---|
| where | CourtWhereUniqueInput | No |
| update | CourtUpdateWithoutEventsInput | CourtUncheckedUpdateWithoutEventsInput | No |
| create | CourtCreateWithoutEventsInput | CourtUncheckedCreateWithoutEventsInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | CourtWhereUniqueInput | No |
| data | CourtUpdateWithoutEventsInput | CourtUncheckedUpdateWithoutEventsInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | CourtScalarWhereInput | No |
| data | CourtUpdateManyMutationInput | CourtUncheckedUpdateManyWithoutEventsInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | CourtScalarWhereInput | CourtScalarWhereInput[] | No |
| OR | CourtScalarWhereInput[] | No |
| NOT | CourtScalarWhereInput | CourtScalarWhereInput[] | No |
| id | StringFilter | String | No |
| name | StringFilter | String | No |
| isAvailable | BoolFilter | Boolean | No |
| placeId | StringFilter | String | No |
| Name | Type | Nullable |
|---|---|---|
| update | InviteUpdateWithoutEventInput | InviteUncheckedUpdateWithoutEventInput | No |
| create | InviteCreateWithoutEventInput | InviteUncheckedCreateWithoutEventInput | No |
| where | InviteWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | InviteWhereInput | No |
| data | InviteUpdateWithoutEventInput | InviteUncheckedUpdateWithoutEventInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| inviteType | InviteType | EnumInviteTypeFieldUpdateOperationsInput | No |
| inviterId | String | StringFieldUpdateOperationsInput | No |
| invitedId | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| players | PlayerUpdateManyWithoutInvitesNestedInput | No |
| double | DoubleUpdateOneWithoutInvitesNestedInput | No |
| match | MatchUpdateOneWithoutInviteNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| inviteType | InviteType | EnumInviteTypeFieldUpdateOperationsInput | No |
| doublesId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| matchId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| inviterId | String | StringFieldUpdateOperationsInput | No |
| invitedId | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| players | PlayerUncheckedUpdateManyWithoutInvitesNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | CategoryGroupWhereUniqueInput | No |
| update | CategoryGroupUpdateWithoutEventInput | CategoryGroupUncheckedUpdateWithoutEventInput | No |
| create | CategoryGroupCreateWithoutEventInput | CategoryGroupUncheckedCreateWithoutEventInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | CategoryGroupWhereUniqueInput | No |
| data | CategoryGroupUpdateWithoutEventInput | CategoryGroupUncheckedUpdateWithoutEventInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | CategoryGroupScalarWhereInput | No |
| data | CategoryGroupUpdateManyMutationInput | CategoryGroupUncheckedUpdateManyWithoutEventInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | CategoryGroupScalarWhereInput | CategoryGroupScalarWhereInput[] | No |
| OR | CategoryGroupScalarWhereInput[] | No |
| NOT | CategoryGroupScalarWhereInput | CategoryGroupScalarWhereInput[] | No |
| id | StringFilter | String | No |
| categoryId | StringFilter | String | No |
| eventId | StringNullableFilter | String | Null | Yes |
| firstPlaceId | StringNullableFilter | String | Null | Yes |
| secondPlaceId | StringNullableFilter | String | Null | Yes |
| groupsStageFinished | BoolFilter | Boolean | No |
| categoryFinished | BoolFilter | Boolean | No |
| isFinalMatchesCreated | BoolFilter | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| where | EventMatchWhereUniqueInput | No |
| update | EventMatchUpdateWithoutEventInput | EventMatchUncheckedUpdateWithoutEventInput | No |
| create | EventMatchCreateWithoutEventInput | EventMatchUncheckedCreateWithoutEventInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | EventMatchWhereUniqueInput | No |
| data | EventMatchUpdateWithoutEventInput | EventMatchUncheckedUpdateWithoutEventInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | EventMatchScalarWhereInput | No |
| data | EventMatchUpdateManyMutationInput | EventMatchUncheckedUpdateManyWithoutEventInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | EventMatchScalarWhereInput | EventMatchScalarWhereInput[] | No |
| OR | EventMatchScalarWhereInput[] | No |
| NOT | EventMatchScalarWhereInput | EventMatchScalarWhereInput[] | No |
| number | IntFilter | Int | No |
| type | EnumEventMatchTypeFilter | EventMatchType | No |
| eventId | StringFilter | String | No |
| matchId | StringFilter | String | No |
| categoryGroupId | StringNullableFilter | String | Null | Yes |
| doublesGroupId | StringNullableFilter | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| level | Int | No |
| type | CatType | No |
| players | PlayerCreateNestedManyWithoutCategoryInput | No |
| doubles | DoubleCreateNestedManyWithoutCategoryInput | No |
| events | EventCreateNestedManyWithoutCategoriesInput | No |
| matches | MatchCreateNestedManyWithoutCategoryInput | No |
| eventDoubles | EventDoubleCreateNestedManyWithoutCategoryInput | No |
| eventRequests | EventRequestCreateNestedManyWithoutCategoryInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| level | Int | No |
| type | CatType | No |
| players | PlayerUncheckedCreateNestedManyWithoutCategoryInput | No |
| doubles | DoubleUncheckedCreateNestedManyWithoutCategoryInput | No |
| events | EventUncheckedCreateNestedManyWithoutCategoriesInput | No |
| matches | MatchUncheckedCreateNestedManyWithoutCategoryInput | No |
| eventDoubles | EventDoubleUncheckedCreateNestedManyWithoutCategoryInput | No |
| eventRequests | EventRequestUncheckedCreateNestedManyWithoutCategoryInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | CategoryWhereUniqueInput | No |
| create | CategoryCreateWithoutCategoryGroupInput | CategoryUncheckedCreateWithoutCategoryGroupInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| key | String | No |
| groupFinished | Boolean | No |
| eventDoubles | EventDoubleCreateNestedManyWithoutDoublesGroupInput | No |
| firstPlace | DoubleCreateNestedOneWithoutFirstPlaceInGroupsInput | No |
| secondPlace | DoubleCreateNestedOneWithoutSecondPlaceInGroupsInput | No |
| groupMatches | EventMatchCreateNestedManyWithoutDoublesGroupInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| key | String | No |
| firstPlaceDoublesId | String | Null | Yes |
| secondPlaceDoublesId | String | Null | Yes |
| groupFinished | Boolean | No |
| eventDoubles | EventDoubleUncheckedCreateNestedManyWithoutDoublesGroupInput | No |
| groupMatches | EventMatchUncheckedCreateNestedManyWithoutDoublesGroupInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | DoublesGroupWhereUniqueInput | No |
| create | DoublesGroupCreateWithoutCategoryGroupInput | DoublesGroupUncheckedCreateWithoutCategoryGroupInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | DoublesGroupCreateManyCategoryGroupInput | DoublesGroupCreateManyCategoryGroupInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| name | String | No |
| isActive | Boolean | No |
| isFinished | Boolean | No |
| startDate | DateTime | Null | Yes |
| finishDate | DateTime | Null | Yes |
| matchDurationInMinutes | Int | Null | Yes |
| timeOfFirstMatch | Int | Null | Yes |
| timeOfLastMatch | Int | Null | Yes |
| eventType | EventType | No |
| matchType | MatchType | No |
| isGroupMatchesFinished | Boolean | No |
| categories | CategoryCreateNestedManyWithoutEventsInput | No |
| players | PlayerCreateNestedManyWithoutEventsInput | No |
| matches | MatchCreateNestedManyWithoutEventInput | No |
| places | PlaceCreateNestedManyWithoutEventsInput | No |
| eventRequests | EventRequestCreateNestedManyWithoutEventInput | No |
| eventDoubles | EventDoubleCreateNestedManyWithoutEventInput | No |
| games | GameCreateNestedManyWithoutEventsInput | No |
| sets | SetCreateNestedManyWithoutEventsInput | No |
| matchDates | MatchDateCreateNestedManyWithoutEventInput | No |
| courts | CourtCreateNestedManyWithoutEventsInput | No |
| invite | InviteCreateNestedOneWithoutEventInput | No |
| eventMatches | EventMatchCreateNestedManyWithoutEventInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | EventWhereUniqueInput | No |
| create | EventCreateWithoutCategoriesGroupsInput | EventUncheckedCreateWithoutCategoriesGroupsInput | No |
| Name | Type | Nullable |
|---|---|---|
| number | Int | No |
| type | EventMatchType | No |
| event | EventCreateNestedOneWithoutEventMatchesInput | No |
| match | MatchCreateNestedOneWithoutEventMatchInput | No |
| doublesGroup | DoublesGroupCreateNestedOneWithoutGroupMatchesInput | No |
| Name | Type | Nullable |
|---|---|---|
| number | Int | No |
| type | EventMatchType | No |
| eventId | String | No |
| matchId | String | No |
| doublesGroupId | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| where | EventMatchWhereUniqueInput | No |
| create | EventMatchCreateWithoutCategoryGroupInput | EventMatchUncheckedCreateWithoutCategoryGroupInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | EventMatchCreateManyCategoryGroupInput | EventMatchCreateManyCategoryGroupInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| isUpdated | Boolean | No |
| matchA | MatchCreateNestedOneWithoutMatchRefAInput | No |
| matchB | MatchCreateNestedOneWithoutMatchRefBInput | No |
| refMatch | MatchCreateNestedOneWithoutMatchRefInput | No |
| Name | Type | Nullable |
|---|---|---|
| matchAId | String | No |
| matchBId | String | Null | Yes |
| refMatchId | String | Null | Yes |
| isUpdated | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| where | MatchesReferencedWhereUniqueInput | No |
| create | MatchesReferencedCreateWithoutCategoryGroupInput | MatchesReferencedUncheckedCreateWithoutCategoryGroupInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | MatchesReferencedCreateManyCategoryGroupInput | MatchesReferencedCreateManyCategoryGroupInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| players | PlayerCreateNestedManyWithoutDoublesInput | No |
| matches | MatchCreateNestedManyWithoutDoublesInput | No |
| category | CategoryCreateNestedOneWithoutDoublesInput | No |
| games | GameCreateNestedManyWithoutDoublesInput | No |
| sets | SetCreateNestedManyWithoutDoublesInput | No |
| matchesWins | MatchCreateNestedManyWithoutWinnerInput | No |
| setsWins | SetCreateNestedManyWithoutWinnerInput | No |
| gamesWins | GameCreateNestedManyWithoutWinnerInput | No |
| eventRequests | EventRequestCreateNestedManyWithoutDoubleInput | No |
| eventDouble | EventDoubleCreateNestedManyWithoutDoubleInput | No |
| invites | InviteCreateNestedManyWithoutDoubleInput | No |
| firstPlaceInGroups | DoublesGroupCreateNestedManyWithoutFirstPlaceInput | No |
| secondPlaceInGroups | DoublesGroupCreateNestedManyWithoutSecondPlaceInput | No |
| secondPlaceInCategory | CategoryGroupCreateNestedManyWithoutSecondPlaceInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| categoryId | String | No |
| players | PlayerUncheckedCreateNestedManyWithoutDoublesInput | No |
| matches | MatchUncheckedCreateNestedManyWithoutDoublesInput | No |
| games | GameUncheckedCreateNestedManyWithoutDoublesInput | No |
| sets | SetUncheckedCreateNestedManyWithoutDoublesInput | No |
| matchesWins | MatchUncheckedCreateNestedManyWithoutWinnerInput | No |
| setsWins | SetUncheckedCreateNestedManyWithoutWinnerInput | No |
| gamesWins | GameUncheckedCreateNestedManyWithoutWinnerInput | No |
| eventRequests | EventRequestUncheckedCreateNestedManyWithoutDoubleInput | No |
| eventDouble | EventDoubleUncheckedCreateNestedManyWithoutDoubleInput | No |
| invites | InviteUncheckedCreateNestedManyWithoutDoubleInput | No |
| firstPlaceInGroups | DoublesGroupUncheckedCreateNestedManyWithoutFirstPlaceInput | No |
| secondPlaceInGroups | DoublesGroupUncheckedCreateNestedManyWithoutSecondPlaceInput | No |
| secondPlaceInCategory | CategoryGroupUncheckedCreateNestedManyWithoutSecondPlaceInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | DoubleWhereUniqueInput | No |
| create | DoubleCreateWithoutFirstPlaceInCategoryInput | DoubleUncheckedCreateWithoutFirstPlaceInCategoryInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| players | PlayerCreateNestedManyWithoutDoublesInput | No |
| matches | MatchCreateNestedManyWithoutDoublesInput | No |
| category | CategoryCreateNestedOneWithoutDoublesInput | No |
| games | GameCreateNestedManyWithoutDoublesInput | No |
| sets | SetCreateNestedManyWithoutDoublesInput | No |
| matchesWins | MatchCreateNestedManyWithoutWinnerInput | No |
| setsWins | SetCreateNestedManyWithoutWinnerInput | No |
| gamesWins | GameCreateNestedManyWithoutWinnerInput | No |
| eventRequests | EventRequestCreateNestedManyWithoutDoubleInput | No |
| eventDouble | EventDoubleCreateNestedManyWithoutDoubleInput | No |
| invites | InviteCreateNestedManyWithoutDoubleInput | No |
| firstPlaceInGroups | DoublesGroupCreateNestedManyWithoutFirstPlaceInput | No |
| secondPlaceInGroups | DoublesGroupCreateNestedManyWithoutSecondPlaceInput | No |
| firstPlaceInCategory | CategoryGroupCreateNestedManyWithoutFirstPlaceInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| categoryId | String | No |
| players | PlayerUncheckedCreateNestedManyWithoutDoublesInput | No |
| matches | MatchUncheckedCreateNestedManyWithoutDoublesInput | No |
| games | GameUncheckedCreateNestedManyWithoutDoublesInput | No |
| sets | SetUncheckedCreateNestedManyWithoutDoublesInput | No |
| matchesWins | MatchUncheckedCreateNestedManyWithoutWinnerInput | No |
| setsWins | SetUncheckedCreateNestedManyWithoutWinnerInput | No |
| gamesWins | GameUncheckedCreateNestedManyWithoutWinnerInput | No |
| eventRequests | EventRequestUncheckedCreateNestedManyWithoutDoubleInput | No |
| eventDouble | EventDoubleUncheckedCreateNestedManyWithoutDoubleInput | No |
| invites | InviteUncheckedCreateNestedManyWithoutDoubleInput | No |
| firstPlaceInGroups | DoublesGroupUncheckedCreateNestedManyWithoutFirstPlaceInput | No |
| secondPlaceInGroups | DoublesGroupUncheckedCreateNestedManyWithoutSecondPlaceInput | No |
| firstPlaceInCategory | CategoryGroupUncheckedCreateNestedManyWithoutFirstPlaceInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | DoubleWhereUniqueInput | No |
| create | DoubleCreateWithoutSecondPlaceInCategoryInput | DoubleUncheckedCreateWithoutSecondPlaceInCategoryInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | CategoryUpdateWithoutCategoryGroupInput | CategoryUncheckedUpdateWithoutCategoryGroupInput | No |
| create | CategoryCreateWithoutCategoryGroupInput | CategoryUncheckedCreateWithoutCategoryGroupInput | No |
| where | CategoryWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | CategoryWhereInput | No |
| data | CategoryUpdateWithoutCategoryGroupInput | CategoryUncheckedUpdateWithoutCategoryGroupInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| level | Int | IntFieldUpdateOperationsInput | No |
| type | CatType | EnumCatTypeFieldUpdateOperationsInput | No |
| players | PlayerUpdateManyWithoutCategoryNestedInput | No |
| doubles | DoubleUpdateManyWithoutCategoryNestedInput | No |
| events | EventUpdateManyWithoutCategoriesNestedInput | No |
| matches | MatchUpdateManyWithoutCategoryNestedInput | No |
| eventDoubles | EventDoubleUpdateManyWithoutCategoryNestedInput | No |
| eventRequests | EventRequestUpdateManyWithoutCategoryNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| level | Int | IntFieldUpdateOperationsInput | No |
| type | CatType | EnumCatTypeFieldUpdateOperationsInput | No |
| players | PlayerUncheckedUpdateManyWithoutCategoryNestedInput | No |
| doubles | DoubleUncheckedUpdateManyWithoutCategoryNestedInput | No |
| events | EventUncheckedUpdateManyWithoutCategoriesNestedInput | No |
| matches | MatchUncheckedUpdateManyWithoutCategoryNestedInput | No |
| eventDoubles | EventDoubleUncheckedUpdateManyWithoutCategoryNestedInput | No |
| eventRequests | EventRequestUncheckedUpdateManyWithoutCategoryNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | DoublesGroupWhereUniqueInput | No |
| update | DoublesGroupUpdateWithoutCategoryGroupInput | DoublesGroupUncheckedUpdateWithoutCategoryGroupInput | No |
| create | DoublesGroupCreateWithoutCategoryGroupInput | DoublesGroupUncheckedCreateWithoutCategoryGroupInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | DoublesGroupWhereUniqueInput | No |
| data | DoublesGroupUpdateWithoutCategoryGroupInput | DoublesGroupUncheckedUpdateWithoutCategoryGroupInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | DoublesGroupScalarWhereInput | No |
| data | DoublesGroupUpdateManyMutationInput | DoublesGroupUncheckedUpdateManyWithoutCategoryGroupInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | DoublesGroupScalarWhereInput | DoublesGroupScalarWhereInput[] | No |
| OR | DoublesGroupScalarWhereInput[] | No |
| NOT | DoublesGroupScalarWhereInput | DoublesGroupScalarWhereInput[] | No |
| id | StringFilter | String | No |
| key | StringFilter | String | No |
| categoryGroupId | StringNullableFilter | String | Null | Yes |
| firstPlaceDoublesId | StringNullableFilter | String | Null | Yes |
| secondPlaceDoublesId | StringNullableFilter | String | Null | Yes |
| groupFinished | BoolFilter | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| update | EventUpdateWithoutCategoriesGroupsInput | EventUncheckedUpdateWithoutCategoriesGroupsInput | No |
| create | EventCreateWithoutCategoriesGroupsInput | EventUncheckedCreateWithoutCategoriesGroupsInput | No |
| where | EventWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | EventWhereInput | No |
| data | EventUpdateWithoutCategoriesGroupsInput | EventUncheckedUpdateWithoutCategoriesGroupsInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | EventMatchWhereUniqueInput | No |
| update | EventMatchUpdateWithoutCategoryGroupInput | EventMatchUncheckedUpdateWithoutCategoryGroupInput | No |
| create | EventMatchCreateWithoutCategoryGroupInput | EventMatchUncheckedCreateWithoutCategoryGroupInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | EventMatchWhereUniqueInput | No |
| data | EventMatchUpdateWithoutCategoryGroupInput | EventMatchUncheckedUpdateWithoutCategoryGroupInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | EventMatchScalarWhereInput | No |
| data | EventMatchUpdateManyMutationInput | EventMatchUncheckedUpdateManyWithoutCategoryGroupInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | MatchesReferencedWhereUniqueInput | No |
| data | MatchesReferencedUpdateWithoutCategoryGroupInput | MatchesReferencedUncheckedUpdateWithoutCategoryGroupInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | MatchesReferencedScalarWhereInput | No |
| data | MatchesReferencedUpdateManyMutationInput | MatchesReferencedUncheckedUpdateManyWithoutCategoryGroupInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | MatchesReferencedScalarWhereInput | MatchesReferencedScalarWhereInput[] | No |
| OR | MatchesReferencedScalarWhereInput[] | No |
| NOT | MatchesReferencedScalarWhereInput | MatchesReferencedScalarWhereInput[] | No |
| matchAId | StringFilter | String | No |
| matchBId | StringNullableFilter | String | Null | Yes |
| refMatchId | StringNullableFilter | String | Null | Yes |
| categoryGroupId | StringNullableFilter | String | Null | Yes |
| isUpdated | BoolFilter | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| update | DoubleUpdateWithoutFirstPlaceInCategoryInput | DoubleUncheckedUpdateWithoutFirstPlaceInCategoryInput | No |
| create | DoubleCreateWithoutFirstPlaceInCategoryInput | DoubleUncheckedCreateWithoutFirstPlaceInCategoryInput | No |
| where | DoubleWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | DoubleWhereInput | No |
| data | DoubleUpdateWithoutFirstPlaceInCategoryInput | DoubleUncheckedUpdateWithoutFirstPlaceInCategoryInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| players | PlayerUpdateManyWithoutDoublesNestedInput | No |
| matches | MatchUpdateManyWithoutDoublesNestedInput | No |
| category | CategoryUpdateOneRequiredWithoutDoublesNestedInput | No |
| games | GameUpdateManyWithoutDoublesNestedInput | No |
| sets | SetUpdateManyWithoutDoublesNestedInput | No |
| matchesWins | MatchUpdateManyWithoutWinnerNestedInput | No |
| setsWins | SetUpdateManyWithoutWinnerNestedInput | No |
| gamesWins | GameUpdateManyWithoutWinnerNestedInput | No |
| eventRequests | EventRequestUpdateManyWithoutDoubleNestedInput | No |
| eventDouble | EventDoubleUpdateManyWithoutDoubleNestedInput | No |
| invites | InviteUpdateManyWithoutDoubleNestedInput | No |
| firstPlaceInGroups | DoublesGroupUpdateManyWithoutFirstPlaceNestedInput | No |
| secondPlaceInGroups | DoublesGroupUpdateManyWithoutSecondPlaceNestedInput | No |
| secondPlaceInCategory | CategoryGroupUpdateManyWithoutSecondPlaceNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | DoubleUpdateWithoutSecondPlaceInCategoryInput | DoubleUncheckedUpdateWithoutSecondPlaceInCategoryInput | No |
| create | DoubleCreateWithoutSecondPlaceInCategoryInput | DoubleUncheckedCreateWithoutSecondPlaceInCategoryInput | No |
| where | DoubleWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | DoubleWhereInput | No |
| data | DoubleUpdateWithoutSecondPlaceInCategoryInput | DoubleUncheckedUpdateWithoutSecondPlaceInCategoryInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| players | PlayerUpdateManyWithoutDoublesNestedInput | No |
| matches | MatchUpdateManyWithoutDoublesNestedInput | No |
| category | CategoryUpdateOneRequiredWithoutDoublesNestedInput | No |
| games | GameUpdateManyWithoutDoublesNestedInput | No |
| sets | SetUpdateManyWithoutDoublesNestedInput | No |
| matchesWins | MatchUpdateManyWithoutWinnerNestedInput | No |
| setsWins | SetUpdateManyWithoutWinnerNestedInput | No |
| gamesWins | GameUpdateManyWithoutWinnerNestedInput | No |
| eventRequests | EventRequestUpdateManyWithoutDoubleNestedInput | No |
| eventDouble | EventDoubleUpdateManyWithoutDoubleNestedInput | No |
| invites | InviteUpdateManyWithoutDoubleNestedInput | No |
| firstPlaceInGroups | DoublesGroupUpdateManyWithoutFirstPlaceNestedInput | No |
| secondPlaceInGroups | DoublesGroupUpdateManyWithoutSecondPlaceNestedInput | No |
| firstPlaceInCategory | CategoryGroupUpdateManyWithoutFirstPlaceNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| categoryId | String | StringFieldUpdateOperationsInput | No |
| players | PlayerUncheckedUpdateManyWithoutDoublesNestedInput | No |
| matches | MatchUncheckedUpdateManyWithoutDoublesNestedInput | No |
| games | GameUncheckedUpdateManyWithoutDoublesNestedInput | No |
| sets | SetUncheckedUpdateManyWithoutDoublesNestedInput | No |
| matchesWins | MatchUncheckedUpdateManyWithoutWinnerNestedInput | No |
| setsWins | SetUncheckedUpdateManyWithoutWinnerNestedInput | No |
| gamesWins | GameUncheckedUpdateManyWithoutWinnerNestedInput | No |
| eventRequests | EventRequestUncheckedUpdateManyWithoutDoubleNestedInput | No |
| eventDouble | EventDoubleUncheckedUpdateManyWithoutDoubleNestedInput | No |
| invites | InviteUncheckedUpdateManyWithoutDoubleNestedInput | No |
| firstPlaceInGroups | DoublesGroupUncheckedUpdateManyWithoutFirstPlaceNestedInput | No |
| secondPlaceInGroups | DoublesGroupUncheckedUpdateManyWithoutSecondPlaceNestedInput | No |
| firstPlaceInCategory | CategoryGroupUncheckedUpdateManyWithoutFirstPlaceNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| event | EventCreateNestedOneWithoutEventDoublesInput | No |
| double | DoubleCreateNestedOneWithoutEventDoubleInput | No |
| category | CategoryCreateNestedOneWithoutEventDoublesInput | No |
| atRest | MatchDateCreateNestedOneWithoutAtRestInput | No |
| Name | Type | Nullable |
|---|---|---|
| eventId | String | No |
| doubleId | String | No |
| categoryId | String | No |
| atRestId | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| where | EventDoubleWhereUniqueInput | No |
| create | EventDoubleCreateWithoutDoublesGroupInput | EventDoubleUncheckedCreateWithoutDoublesGroupInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | EventDoubleCreateManyDoublesGroupInput | EventDoubleCreateManyDoublesGroupInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| groupsStageFinished | Boolean | No |
| categoryFinished | Boolean | No |
| isFinalMatchesCreated | Boolean | No |
| category | CategoryCreateNestedOneWithoutCategoryGroupInput | No |
| event | EventCreateNestedOneWithoutCategoriesGroupsInput | No |
| finalMatches | EventMatchCreateNestedManyWithoutCategoryGroupInput | No |
| matchesWithReference | MatchesReferencedCreateNestedManyWithoutCategoryGroupInput | No |
| firstPlace | DoubleCreateNestedOneWithoutFirstPlaceInCategoryInput | No |
| secondPlace | DoubleCreateNestedOneWithoutSecondPlaceInCategoryInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| categoryId | String | No |
| eventId | String | Null | Yes |
| firstPlaceId | String | Null | Yes |
| secondPlaceId | String | Null | Yes |
| groupsStageFinished | Boolean | No |
| categoryFinished | Boolean | No |
| isFinalMatchesCreated | Boolean | No |
| finalMatches | EventMatchUncheckedCreateNestedManyWithoutCategoryGroupInput | No |
| matchesWithReference | MatchesReferencedUncheckedCreateNestedManyWithoutCategoryGroupInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | CategoryGroupWhereUniqueInput | No |
| create | CategoryGroupCreateWithoutGroupsInput | CategoryGroupUncheckedCreateWithoutGroupsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| players | PlayerCreateNestedManyWithoutDoublesInput | No |
| matches | MatchCreateNestedManyWithoutDoublesInput | No |
| category | CategoryCreateNestedOneWithoutDoublesInput | No |
| games | GameCreateNestedManyWithoutDoublesInput | No |
| sets | SetCreateNestedManyWithoutDoublesInput | No |
| matchesWins | MatchCreateNestedManyWithoutWinnerInput | No |
| setsWins | SetCreateNestedManyWithoutWinnerInput | No |
| gamesWins | GameCreateNestedManyWithoutWinnerInput | No |
| eventRequests | EventRequestCreateNestedManyWithoutDoubleInput | No |
| eventDouble | EventDoubleCreateNestedManyWithoutDoubleInput | No |
| invites | InviteCreateNestedManyWithoutDoubleInput | No |
| secondPlaceInGroups | DoublesGroupCreateNestedManyWithoutSecondPlaceInput | No |
| firstPlaceInCategory | CategoryGroupCreateNestedManyWithoutFirstPlaceInput | No |
| secondPlaceInCategory | CategoryGroupCreateNestedManyWithoutSecondPlaceInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| categoryId | String | No |
| players | PlayerUncheckedCreateNestedManyWithoutDoublesInput | No |
| matches | MatchUncheckedCreateNestedManyWithoutDoublesInput | No |
| games | GameUncheckedCreateNestedManyWithoutDoublesInput | No |
| sets | SetUncheckedCreateNestedManyWithoutDoublesInput | No |
| matchesWins | MatchUncheckedCreateNestedManyWithoutWinnerInput | No |
| setsWins | SetUncheckedCreateNestedManyWithoutWinnerInput | No |
| gamesWins | GameUncheckedCreateNestedManyWithoutWinnerInput | No |
| eventRequests | EventRequestUncheckedCreateNestedManyWithoutDoubleInput | No |
| eventDouble | EventDoubleUncheckedCreateNestedManyWithoutDoubleInput | No |
| invites | InviteUncheckedCreateNestedManyWithoutDoubleInput | No |
| secondPlaceInGroups | DoublesGroupUncheckedCreateNestedManyWithoutSecondPlaceInput | No |
| firstPlaceInCategory | CategoryGroupUncheckedCreateNestedManyWithoutFirstPlaceInput | No |
| secondPlaceInCategory | CategoryGroupUncheckedCreateNestedManyWithoutSecondPlaceInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | DoubleWhereUniqueInput | No |
| create | DoubleCreateWithoutFirstPlaceInGroupsInput | DoubleUncheckedCreateWithoutFirstPlaceInGroupsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| players | PlayerCreateNestedManyWithoutDoublesInput | No |
| matches | MatchCreateNestedManyWithoutDoublesInput | No |
| category | CategoryCreateNestedOneWithoutDoublesInput | No |
| games | GameCreateNestedManyWithoutDoublesInput | No |
| sets | SetCreateNestedManyWithoutDoublesInput | No |
| matchesWins | MatchCreateNestedManyWithoutWinnerInput | No |
| setsWins | SetCreateNestedManyWithoutWinnerInput | No |
| gamesWins | GameCreateNestedManyWithoutWinnerInput | No |
| eventRequests | EventRequestCreateNestedManyWithoutDoubleInput | No |
| eventDouble | EventDoubleCreateNestedManyWithoutDoubleInput | No |
| invites | InviteCreateNestedManyWithoutDoubleInput | No |
| firstPlaceInGroups | DoublesGroupCreateNestedManyWithoutFirstPlaceInput | No |
| firstPlaceInCategory | CategoryGroupCreateNestedManyWithoutFirstPlaceInput | No |
| secondPlaceInCategory | CategoryGroupCreateNestedManyWithoutSecondPlaceInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| categoryId | String | No |
| players | PlayerUncheckedCreateNestedManyWithoutDoublesInput | No |
| matches | MatchUncheckedCreateNestedManyWithoutDoublesInput | No |
| games | GameUncheckedCreateNestedManyWithoutDoublesInput | No |
| sets | SetUncheckedCreateNestedManyWithoutDoublesInput | No |
| matchesWins | MatchUncheckedCreateNestedManyWithoutWinnerInput | No |
| setsWins | SetUncheckedCreateNestedManyWithoutWinnerInput | No |
| gamesWins | GameUncheckedCreateNestedManyWithoutWinnerInput | No |
| eventRequests | EventRequestUncheckedCreateNestedManyWithoutDoubleInput | No |
| eventDouble | EventDoubleUncheckedCreateNestedManyWithoutDoubleInput | No |
| invites | InviteUncheckedCreateNestedManyWithoutDoubleInput | No |
| firstPlaceInGroups | DoublesGroupUncheckedCreateNestedManyWithoutFirstPlaceInput | No |
| firstPlaceInCategory | CategoryGroupUncheckedCreateNestedManyWithoutFirstPlaceInput | No |
| secondPlaceInCategory | CategoryGroupUncheckedCreateNestedManyWithoutSecondPlaceInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | DoubleWhereUniqueInput | No |
| create | DoubleCreateWithoutSecondPlaceInGroupsInput | DoubleUncheckedCreateWithoutSecondPlaceInGroupsInput | No |
| Name | Type | Nullable |
|---|---|---|
| number | Int | No |
| type | EventMatchType | No |
| event | EventCreateNestedOneWithoutEventMatchesInput | No |
| match | MatchCreateNestedOneWithoutEventMatchInput | No |
| categoryGroup | CategoryGroupCreateNestedOneWithoutFinalMatchesInput | No |
| Name | Type | Nullable |
|---|---|---|
| number | Int | No |
| type | EventMatchType | No |
| eventId | String | No |
| matchId | String | No |
| categoryGroupId | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| where | EventMatchWhereUniqueInput | No |
| create | EventMatchCreateWithoutDoublesGroupInput | EventMatchUncheckedCreateWithoutDoublesGroupInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | EventMatchCreateManyDoublesGroupInput | EventMatchCreateManyDoublesGroupInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| where | EventDoubleWhereUniqueInput | No |
| update | EventDoubleUpdateWithoutDoublesGroupInput | EventDoubleUncheckedUpdateWithoutDoublesGroupInput | No |
| create | EventDoubleCreateWithoutDoublesGroupInput | EventDoubleUncheckedCreateWithoutDoublesGroupInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | EventDoubleWhereUniqueInput | No |
| data | EventDoubleUpdateWithoutDoublesGroupInput | EventDoubleUncheckedUpdateWithoutDoublesGroupInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | EventDoubleScalarWhereInput | No |
| data | EventDoubleUpdateManyMutationInput | EventDoubleUncheckedUpdateManyWithoutDoublesGroupInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | CategoryGroupUpdateWithoutGroupsInput | CategoryGroupUncheckedUpdateWithoutGroupsInput | No |
| create | CategoryGroupCreateWithoutGroupsInput | CategoryGroupUncheckedCreateWithoutGroupsInput | No |
| where | CategoryGroupWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | CategoryGroupWhereInput | No |
| data | CategoryGroupUpdateWithoutGroupsInput | CategoryGroupUncheckedUpdateWithoutGroupsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| groupsStageFinished | Boolean | BoolFieldUpdateOperationsInput | No |
| categoryFinished | Boolean | BoolFieldUpdateOperationsInput | No |
| isFinalMatchesCreated | Boolean | BoolFieldUpdateOperationsInput | No |
| category | CategoryUpdateOneRequiredWithoutCategoryGroupNestedInput | No |
| event | EventUpdateOneWithoutCategoriesGroupsNestedInput | No |
| finalMatches | EventMatchUpdateManyWithoutCategoryGroupNestedInput | No |
| matchesWithReference | MatchesReferencedUpdateManyWithoutCategoryGroupNestedInput | No |
| firstPlace | DoubleUpdateOneWithoutFirstPlaceInCategoryNestedInput | No |
| secondPlace | DoubleUpdateOneWithoutSecondPlaceInCategoryNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| categoryId | String | StringFieldUpdateOperationsInput | No |
| eventId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| firstPlaceId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| secondPlaceId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| groupsStageFinished | Boolean | BoolFieldUpdateOperationsInput | No |
| categoryFinished | Boolean | BoolFieldUpdateOperationsInput | No |
| isFinalMatchesCreated | Boolean | BoolFieldUpdateOperationsInput | No |
| finalMatches | EventMatchUncheckedUpdateManyWithoutCategoryGroupNestedInput | No |
| matchesWithReference | MatchesReferencedUncheckedUpdateManyWithoutCategoryGroupNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | DoubleUpdateWithoutFirstPlaceInGroupsInput | DoubleUncheckedUpdateWithoutFirstPlaceInGroupsInput | No |
| create | DoubleCreateWithoutFirstPlaceInGroupsInput | DoubleUncheckedCreateWithoutFirstPlaceInGroupsInput | No |
| where | DoubleWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | DoubleWhereInput | No |
| data | DoubleUpdateWithoutFirstPlaceInGroupsInput | DoubleUncheckedUpdateWithoutFirstPlaceInGroupsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| players | PlayerUpdateManyWithoutDoublesNestedInput | No |
| matches | MatchUpdateManyWithoutDoublesNestedInput | No |
| category | CategoryUpdateOneRequiredWithoutDoublesNestedInput | No |
| games | GameUpdateManyWithoutDoublesNestedInput | No |
| sets | SetUpdateManyWithoutDoublesNestedInput | No |
| matchesWins | MatchUpdateManyWithoutWinnerNestedInput | No |
| setsWins | SetUpdateManyWithoutWinnerNestedInput | No |
| gamesWins | GameUpdateManyWithoutWinnerNestedInput | No |
| eventRequests | EventRequestUpdateManyWithoutDoubleNestedInput | No |
| eventDouble | EventDoubleUpdateManyWithoutDoubleNestedInput | No |
| invites | InviteUpdateManyWithoutDoubleNestedInput | No |
| secondPlaceInGroups | DoublesGroupUpdateManyWithoutSecondPlaceNestedInput | No |
| firstPlaceInCategory | CategoryGroupUpdateManyWithoutFirstPlaceNestedInput | No |
| secondPlaceInCategory | CategoryGroupUpdateManyWithoutSecondPlaceNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | DoubleUpdateWithoutSecondPlaceInGroupsInput | DoubleUncheckedUpdateWithoutSecondPlaceInGroupsInput | No |
| create | DoubleCreateWithoutSecondPlaceInGroupsInput | DoubleUncheckedCreateWithoutSecondPlaceInGroupsInput | No |
| where | DoubleWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | DoubleWhereInput | No |
| data | DoubleUpdateWithoutSecondPlaceInGroupsInput | DoubleUncheckedUpdateWithoutSecondPlaceInGroupsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| players | PlayerUpdateManyWithoutDoublesNestedInput | No |
| matches | MatchUpdateManyWithoutDoublesNestedInput | No |
| category | CategoryUpdateOneRequiredWithoutDoublesNestedInput | No |
| games | GameUpdateManyWithoutDoublesNestedInput | No |
| sets | SetUpdateManyWithoutDoublesNestedInput | No |
| matchesWins | MatchUpdateManyWithoutWinnerNestedInput | No |
| setsWins | SetUpdateManyWithoutWinnerNestedInput | No |
| gamesWins | GameUpdateManyWithoutWinnerNestedInput | No |
| eventRequests | EventRequestUpdateManyWithoutDoubleNestedInput | No |
| eventDouble | EventDoubleUpdateManyWithoutDoubleNestedInput | No |
| invites | InviteUpdateManyWithoutDoubleNestedInput | No |
| firstPlaceInGroups | DoublesGroupUpdateManyWithoutFirstPlaceNestedInput | No |
| firstPlaceInCategory | CategoryGroupUpdateManyWithoutFirstPlaceNestedInput | No |
| secondPlaceInCategory | CategoryGroupUpdateManyWithoutSecondPlaceNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | EventMatchWhereUniqueInput | No |
| update | EventMatchUpdateWithoutDoublesGroupInput | EventMatchUncheckedUpdateWithoutDoublesGroupInput | No |
| create | EventMatchCreateWithoutDoublesGroupInput | EventMatchUncheckedCreateWithoutDoublesGroupInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | EventMatchWhereUniqueInput | No |
| data | EventMatchUpdateWithoutDoublesGroupInput | EventMatchUncheckedUpdateWithoutDoublesGroupInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | EventMatchScalarWhereInput | No |
| data | EventMatchUpdateManyMutationInput | EventMatchUncheckedUpdateManyWithoutDoublesGroupInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| name | String | No |
| isActive | Boolean | No |
| isFinished | Boolean | No |
| startDate | DateTime | Null | Yes |
| finishDate | DateTime | Null | Yes |
| matchDurationInMinutes | Int | Null | Yes |
| timeOfFirstMatch | Int | Null | Yes |
| timeOfLastMatch | Int | Null | Yes |
| eventType | EventType | No |
| matchType | MatchType | No |
| isGroupMatchesFinished | Boolean | No |
| categories | CategoryCreateNestedManyWithoutEventsInput | No |
| players | PlayerCreateNestedManyWithoutEventsInput | No |
| matches | MatchCreateNestedManyWithoutEventInput | No |
| places | PlaceCreateNestedManyWithoutEventsInput | No |
| eventDoubles | EventDoubleCreateNestedManyWithoutEventInput | No |
| games | GameCreateNestedManyWithoutEventsInput | No |
| sets | SetCreateNestedManyWithoutEventsInput | No |
| matchDates | MatchDateCreateNestedManyWithoutEventInput | No |
| courts | CourtCreateNestedManyWithoutEventsInput | No |
| invite | InviteCreateNestedOneWithoutEventInput | No |
| categoriesGroups | CategoryGroupCreateNestedManyWithoutEventInput | No |
| eventMatches | EventMatchCreateNestedManyWithoutEventInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | EventWhereUniqueInput | No |
| create | EventCreateWithoutEventRequestsInput | EventUncheckedCreateWithoutEventRequestsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| players | PlayerCreateNestedManyWithoutDoublesInput | No |
| matches | MatchCreateNestedManyWithoutDoublesInput | No |
| category | CategoryCreateNestedOneWithoutDoublesInput | No |
| games | GameCreateNestedManyWithoutDoublesInput | No |
| sets | SetCreateNestedManyWithoutDoublesInput | No |
| matchesWins | MatchCreateNestedManyWithoutWinnerInput | No |
| setsWins | SetCreateNestedManyWithoutWinnerInput | No |
| gamesWins | GameCreateNestedManyWithoutWinnerInput | No |
| eventDouble | EventDoubleCreateNestedManyWithoutDoubleInput | No |
| invites | InviteCreateNestedManyWithoutDoubleInput | No |
| firstPlaceInGroups | DoublesGroupCreateNestedManyWithoutFirstPlaceInput | No |
| secondPlaceInGroups | DoublesGroupCreateNestedManyWithoutSecondPlaceInput | No |
| firstPlaceInCategory | CategoryGroupCreateNestedManyWithoutFirstPlaceInput | No |
| secondPlaceInCategory | CategoryGroupCreateNestedManyWithoutSecondPlaceInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| categoryId | String | No |
| players | PlayerUncheckedCreateNestedManyWithoutDoublesInput | No |
| matches | MatchUncheckedCreateNestedManyWithoutDoublesInput | No |
| games | GameUncheckedCreateNestedManyWithoutDoublesInput | No |
| sets | SetUncheckedCreateNestedManyWithoutDoublesInput | No |
| matchesWins | MatchUncheckedCreateNestedManyWithoutWinnerInput | No |
| setsWins | SetUncheckedCreateNestedManyWithoutWinnerInput | No |
| gamesWins | GameUncheckedCreateNestedManyWithoutWinnerInput | No |
| eventDouble | EventDoubleUncheckedCreateNestedManyWithoutDoubleInput | No |
| invites | InviteUncheckedCreateNestedManyWithoutDoubleInput | No |
| firstPlaceInGroups | DoublesGroupUncheckedCreateNestedManyWithoutFirstPlaceInput | No |
| secondPlaceInGroups | DoublesGroupUncheckedCreateNestedManyWithoutSecondPlaceInput | No |
| firstPlaceInCategory | CategoryGroupUncheckedCreateNestedManyWithoutFirstPlaceInput | No |
| secondPlaceInCategory | CategoryGroupUncheckedCreateNestedManyWithoutSecondPlaceInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | DoubleWhereUniqueInput | No |
| create | DoubleCreateWithoutEventRequestsInput | DoubleUncheckedCreateWithoutEventRequestsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| level | Int | No |
| type | CatType | No |
| players | PlayerCreateNestedManyWithoutCategoryInput | No |
| doubles | DoubleCreateNestedManyWithoutCategoryInput | No |
| events | EventCreateNestedManyWithoutCategoriesInput | No |
| matches | MatchCreateNestedManyWithoutCategoryInput | No |
| eventDoubles | EventDoubleCreateNestedManyWithoutCategoryInput | No |
| categoryGroup | CategoryGroupCreateNestedManyWithoutCategoryInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| level | Int | No |
| type | CatType | No |
| players | PlayerUncheckedCreateNestedManyWithoutCategoryInput | No |
| doubles | DoubleUncheckedCreateNestedManyWithoutCategoryInput | No |
| events | EventUncheckedCreateNestedManyWithoutCategoriesInput | No |
| matches | MatchUncheckedCreateNestedManyWithoutCategoryInput | No |
| eventDoubles | EventDoubleUncheckedCreateNestedManyWithoutCategoryInput | No |
| categoryGroup | CategoryGroupUncheckedCreateNestedManyWithoutCategoryInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | CategoryWhereUniqueInput | No |
| create | CategoryCreateWithoutEventRequestsInput | CategoryUncheckedCreateWithoutEventRequestsInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | EventUpdateWithoutEventRequestsInput | EventUncheckedUpdateWithoutEventRequestsInput | No |
| create | EventCreateWithoutEventRequestsInput | EventUncheckedCreateWithoutEventRequestsInput | No |
| where | EventWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | EventWhereInput | No |
| data | EventUpdateWithoutEventRequestsInput | EventUncheckedUpdateWithoutEventRequestsInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | DoubleUpdateWithoutEventRequestsInput | DoubleUncheckedUpdateWithoutEventRequestsInput | No |
| create | DoubleCreateWithoutEventRequestsInput | DoubleUncheckedCreateWithoutEventRequestsInput | No |
| where | DoubleWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | DoubleWhereInput | No |
| data | DoubleUpdateWithoutEventRequestsInput | DoubleUncheckedUpdateWithoutEventRequestsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| players | PlayerUpdateManyWithoutDoublesNestedInput | No |
| matches | MatchUpdateManyWithoutDoublesNestedInput | No |
| category | CategoryUpdateOneRequiredWithoutDoublesNestedInput | No |
| games | GameUpdateManyWithoutDoublesNestedInput | No |
| sets | SetUpdateManyWithoutDoublesNestedInput | No |
| matchesWins | MatchUpdateManyWithoutWinnerNestedInput | No |
| setsWins | SetUpdateManyWithoutWinnerNestedInput | No |
| gamesWins | GameUpdateManyWithoutWinnerNestedInput | No |
| eventDouble | EventDoubleUpdateManyWithoutDoubleNestedInput | No |
| invites | InviteUpdateManyWithoutDoubleNestedInput | No |
| firstPlaceInGroups | DoublesGroupUpdateManyWithoutFirstPlaceNestedInput | No |
| secondPlaceInGroups | DoublesGroupUpdateManyWithoutSecondPlaceNestedInput | No |
| firstPlaceInCategory | CategoryGroupUpdateManyWithoutFirstPlaceNestedInput | No |
| secondPlaceInCategory | CategoryGroupUpdateManyWithoutSecondPlaceNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | CategoryUpdateWithoutEventRequestsInput | CategoryUncheckedUpdateWithoutEventRequestsInput | No |
| create | CategoryCreateWithoutEventRequestsInput | CategoryUncheckedCreateWithoutEventRequestsInput | No |
| where | CategoryWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | CategoryWhereInput | No |
| data | CategoryUpdateWithoutEventRequestsInput | CategoryUncheckedUpdateWithoutEventRequestsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| level | Int | IntFieldUpdateOperationsInput | No |
| type | CatType | EnumCatTypeFieldUpdateOperationsInput | No |
| players | PlayerUpdateManyWithoutCategoryNestedInput | No |
| doubles | DoubleUpdateManyWithoutCategoryNestedInput | No |
| events | EventUpdateManyWithoutCategoriesNestedInput | No |
| matches | MatchUpdateManyWithoutCategoryNestedInput | No |
| eventDoubles | EventDoubleUpdateManyWithoutCategoryNestedInput | No |
| categoryGroup | CategoryGroupUpdateManyWithoutCategoryNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| level | Int | IntFieldUpdateOperationsInput | No |
| type | CatType | EnumCatTypeFieldUpdateOperationsInput | No |
| players | PlayerUncheckedUpdateManyWithoutCategoryNestedInput | No |
| doubles | DoubleUncheckedUpdateManyWithoutCategoryNestedInput | No |
| events | EventUncheckedUpdateManyWithoutCategoriesNestedInput | No |
| matches | MatchUncheckedUpdateManyWithoutCategoryNestedInput | No |
| eventDoubles | EventDoubleUncheckedUpdateManyWithoutCategoryNestedInput | No |
| categoryGroup | CategoryGroupUncheckedUpdateManyWithoutCategoryNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| name | String | No |
| isActive | Boolean | No |
| isFinished | Boolean | No |
| startDate | DateTime | Null | Yes |
| finishDate | DateTime | Null | Yes |
| matchDurationInMinutes | Int | Null | Yes |
| timeOfFirstMatch | Int | Null | Yes |
| timeOfLastMatch | Int | Null | Yes |
| eventType | EventType | No |
| matchType | MatchType | No |
| isGroupMatchesFinished | Boolean | No |
| categories | CategoryCreateNestedManyWithoutEventsInput | No |
| players | PlayerCreateNestedManyWithoutEventsInput | No |
| matches | MatchCreateNestedManyWithoutEventInput | No |
| places | PlaceCreateNestedManyWithoutEventsInput | No |
| eventRequests | EventRequestCreateNestedManyWithoutEventInput | No |
| eventDoubles | EventDoubleCreateNestedManyWithoutEventInput | No |
| games | GameCreateNestedManyWithoutEventsInput | No |
| sets | SetCreateNestedManyWithoutEventsInput | No |
| matchDates | MatchDateCreateNestedManyWithoutEventInput | No |
| invite | InviteCreateNestedOneWithoutEventInput | No |
| categoriesGroups | CategoryGroupCreateNestedManyWithoutEventInput | No |
| eventMatches | EventMatchCreateNestedManyWithoutEventInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | EventWhereUniqueInput | No |
| create | EventCreateWithoutCourtsInput | EventUncheckedCreateWithoutCourtsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| isFinished | Boolean | No |
| type | MatchType | No |
| players | PlayerCreateNestedManyWithoutMatchesInput | No |
| category | CategoryCreateNestedOneWithoutMatchesInput | No |
| winner | DoubleCreateNestedOneWithoutMatchesWinsInput | No |
| sets | SetCreateNestedManyWithoutMatchInput | No |
| doubles | DoubleCreateNestedManyWithoutMatchesInput | No |
| event | EventCreateNestedOneWithoutMatchesInput | No |
| matchDate | MatchDateCreateNestedOneWithoutMatchInput | No |
| invite | InviteCreateNestedOneWithoutMatchInput | No |
| eventMatch | EventMatchCreateNestedOneWithoutMatchInput | No |
| matchRefA | MatchesReferencedCreateNestedOneWithoutMatchAInput | No |
| matchRefB | MatchesReferencedCreateNestedOneWithoutMatchBInput | No |
| matchRef | MatchesReferencedCreateNestedOneWithoutRefMatchInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| isFinished | Boolean | No |
| categoryId | String | Null | Yes |
| winnerDoublesId | String | Null | Yes |
| eventId | String | Null | Yes |
| type | MatchType | No |
| players | PlayerUncheckedCreateNestedManyWithoutMatchesInput | No |
| sets | SetUncheckedCreateNestedManyWithoutMatchInput | No |
| doubles | DoubleUncheckedCreateNestedManyWithoutMatchesInput | No |
| matchDate | MatchDateUncheckedCreateNestedOneWithoutMatchInput | No |
| invite | InviteUncheckedCreateNestedOneWithoutMatchInput | No |
| eventMatch | EventMatchUncheckedCreateNestedOneWithoutMatchInput | No |
| matchRefA | MatchesReferencedUncheckedCreateNestedOneWithoutMatchAInput | No |
| matchRefB | MatchesReferencedUncheckedCreateNestedOneWithoutMatchBInput | No |
| matchRef | MatchesReferencedUncheckedCreateNestedOneWithoutRefMatchInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | MatchWhereUniqueInput | No |
| create | MatchCreateWithoutCourtInput | MatchUncheckedCreateWithoutCourtInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | MatchCreateManyCourtInput | MatchCreateManyCourtInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| name | String | Null | Yes |
| address | String | Null | Yes |
| events | EventCreateNestedManyWithoutPlacesInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| name | String | Null | Yes |
| address | String | Null | Yes |
| events | EventUncheckedCreateNestedManyWithoutPlacesInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | PlaceWhereUniqueInput | No |
| create | PlaceCreateWithoutCourtsInput | PlaceUncheckedCreateWithoutCourtsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| start | DateTime | No |
| finish | DateTime | No |
| event | EventCreateNestedOneWithoutMatchDatesInput | No |
| match | MatchCreateNestedOneWithoutMatchDateInput | No |
| atRest | EventDoubleCreateNestedManyWithoutAtRestInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| eventId | String | No |
| matchId | String | Null | Yes |
| start | DateTime | No |
| finish | DateTime | No |
| atRest | EventDoubleUncheckedCreateNestedManyWithoutAtRestInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | MatchDateWhereUniqueInput | No |
| create | MatchDateCreateWithoutCourtInput | MatchDateUncheckedCreateWithoutCourtInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | MatchDateCreateManyCourtInput | MatchDateCreateManyCourtInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| where | EventWhereUniqueInput | No |
| update | EventUpdateWithoutCourtsInput | EventUncheckedUpdateWithoutCourtsInput | No |
| create | EventCreateWithoutCourtsInput | EventUncheckedCreateWithoutCourtsInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | EventWhereUniqueInput | No |
| data | EventUpdateWithoutCourtsInput | EventUncheckedUpdateWithoutCourtsInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | EventScalarWhereInput | No |
| data | EventUpdateManyMutationInput | EventUncheckedUpdateManyWithoutCourtsInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | EventScalarWhereInput | EventScalarWhereInput[] | No |
| OR | EventScalarWhereInput[] | No |
| NOT | EventScalarWhereInput | EventScalarWhereInput[] | No |
| id | StringFilter | String | No |
| name | StringFilter | String | No |
| isActive | BoolFilter | Boolean | No |
| isFinished | BoolFilter | Boolean | No |
| startDate | DateTimeNullableFilter | DateTime | Null | Yes |
| finishDate | DateTimeNullableFilter | DateTime | Null | Yes |
| matchDurationInMinutes | IntNullableFilter | Int | Null | Yes |
| timeOfFirstMatch | IntNullableFilter | Int | Null | Yes |
| timeOfLastMatch | IntNullableFilter | Int | Null | Yes |
| eventType | EnumEventTypeFilter | EventType | No |
| matchType | EnumMatchTypeFilter | MatchType | No |
| isGroupMatchesFinished | BoolFilter | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| where | MatchWhereUniqueInput | No |
| update | MatchUpdateWithoutCourtInput | MatchUncheckedUpdateWithoutCourtInput | No |
| create | MatchCreateWithoutCourtInput | MatchUncheckedCreateWithoutCourtInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | MatchWhereUniqueInput | No |
| data | MatchUpdateWithoutCourtInput | MatchUncheckedUpdateWithoutCourtInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | MatchScalarWhereInput | No |
| data | MatchUpdateManyMutationInput | MatchUncheckedUpdateManyWithoutCourtInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | PlaceUpdateWithoutCourtsInput | PlaceUncheckedUpdateWithoutCourtsInput | No |
| create | PlaceCreateWithoutCourtsInput | PlaceUncheckedCreateWithoutCourtsInput | No |
| where | PlaceWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | PlaceWhereInput | No |
| data | PlaceUpdateWithoutCourtsInput | PlaceUncheckedUpdateWithoutCourtsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| name | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| address | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| events | EventUpdateManyWithoutPlacesNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| name | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| address | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| events | EventUncheckedUpdateManyWithoutPlacesNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | MatchDateWhereUniqueInput | No |
| update | MatchDateUpdateWithoutCourtInput | MatchDateUncheckedUpdateWithoutCourtInput | No |
| create | MatchDateCreateWithoutCourtInput | MatchDateUncheckedCreateWithoutCourtInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | MatchDateWhereUniqueInput | No |
| data | MatchDateUpdateWithoutCourtInput | MatchDateUncheckedUpdateWithoutCourtInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | MatchDateScalarWhereInput | No |
| data | MatchDateUpdateManyMutationInput | MatchDateUncheckedUpdateManyWithoutCourtInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| name | String | No |
| isActive | Boolean | No |
| isFinished | Boolean | No |
| startDate | DateTime | Null | Yes |
| finishDate | DateTime | Null | Yes |
| matchDurationInMinutes | Int | Null | Yes |
| timeOfFirstMatch | Int | Null | Yes |
| timeOfLastMatch | Int | Null | Yes |
| eventType | EventType | No |
| matchType | MatchType | No |
| isGroupMatchesFinished | Boolean | No |
| categories | CategoryCreateNestedManyWithoutEventsInput | No |
| players | PlayerCreateNestedManyWithoutEventsInput | No |
| matches | MatchCreateNestedManyWithoutEventInput | No |
| places | PlaceCreateNestedManyWithoutEventsInput | No |
| eventRequests | EventRequestCreateNestedManyWithoutEventInput | No |
| games | GameCreateNestedManyWithoutEventsInput | No |
| sets | SetCreateNestedManyWithoutEventsInput | No |
| matchDates | MatchDateCreateNestedManyWithoutEventInput | No |
| courts | CourtCreateNestedManyWithoutEventsInput | No |
| invite | InviteCreateNestedOneWithoutEventInput | No |
| categoriesGroups | CategoryGroupCreateNestedManyWithoutEventInput | No |
| eventMatches | EventMatchCreateNestedManyWithoutEventInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | EventWhereUniqueInput | No |
| create | EventCreateWithoutEventDoublesInput | EventUncheckedCreateWithoutEventDoublesInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| players | PlayerCreateNestedManyWithoutDoublesInput | No |
| matches | MatchCreateNestedManyWithoutDoublesInput | No |
| category | CategoryCreateNestedOneWithoutDoublesInput | No |
| games | GameCreateNestedManyWithoutDoublesInput | No |
| sets | SetCreateNestedManyWithoutDoublesInput | No |
| matchesWins | MatchCreateNestedManyWithoutWinnerInput | No |
| setsWins | SetCreateNestedManyWithoutWinnerInput | No |
| gamesWins | GameCreateNestedManyWithoutWinnerInput | No |
| eventRequests | EventRequestCreateNestedManyWithoutDoubleInput | No |
| invites | InviteCreateNestedManyWithoutDoubleInput | No |
| firstPlaceInGroups | DoublesGroupCreateNestedManyWithoutFirstPlaceInput | No |
| secondPlaceInGroups | DoublesGroupCreateNestedManyWithoutSecondPlaceInput | No |
| firstPlaceInCategory | CategoryGroupCreateNestedManyWithoutFirstPlaceInput | No |
| secondPlaceInCategory | CategoryGroupCreateNestedManyWithoutSecondPlaceInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| categoryId | String | No |
| players | PlayerUncheckedCreateNestedManyWithoutDoublesInput | No |
| matches | MatchUncheckedCreateNestedManyWithoutDoublesInput | No |
| games | GameUncheckedCreateNestedManyWithoutDoublesInput | No |
| sets | SetUncheckedCreateNestedManyWithoutDoublesInput | No |
| matchesWins | MatchUncheckedCreateNestedManyWithoutWinnerInput | No |
| setsWins | SetUncheckedCreateNestedManyWithoutWinnerInput | No |
| gamesWins | GameUncheckedCreateNestedManyWithoutWinnerInput | No |
| eventRequests | EventRequestUncheckedCreateNestedManyWithoutDoubleInput | No |
| invites | InviteUncheckedCreateNestedManyWithoutDoubleInput | No |
| firstPlaceInGroups | DoublesGroupUncheckedCreateNestedManyWithoutFirstPlaceInput | No |
| secondPlaceInGroups | DoublesGroupUncheckedCreateNestedManyWithoutSecondPlaceInput | No |
| firstPlaceInCategory | CategoryGroupUncheckedCreateNestedManyWithoutFirstPlaceInput | No |
| secondPlaceInCategory | CategoryGroupUncheckedCreateNestedManyWithoutSecondPlaceInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | DoubleWhereUniqueInput | No |
| create | DoubleCreateWithoutEventDoubleInput | DoubleUncheckedCreateWithoutEventDoubleInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| level | Int | No |
| type | CatType | No |
| players | PlayerCreateNestedManyWithoutCategoryInput | No |
| doubles | DoubleCreateNestedManyWithoutCategoryInput | No |
| events | EventCreateNestedManyWithoutCategoriesInput | No |
| matches | MatchCreateNestedManyWithoutCategoryInput | No |
| eventRequests | EventRequestCreateNestedManyWithoutCategoryInput | No |
| categoryGroup | CategoryGroupCreateNestedManyWithoutCategoryInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| level | Int | No |
| type | CatType | No |
| players | PlayerUncheckedCreateNestedManyWithoutCategoryInput | No |
| doubles | DoubleUncheckedCreateNestedManyWithoutCategoryInput | No |
| events | EventUncheckedCreateNestedManyWithoutCategoriesInput | No |
| matches | MatchUncheckedCreateNestedManyWithoutCategoryInput | No |
| eventRequests | EventRequestUncheckedCreateNestedManyWithoutCategoryInput | No |
| categoryGroup | CategoryGroupUncheckedCreateNestedManyWithoutCategoryInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | CategoryWhereUniqueInput | No |
| create | CategoryCreateWithoutEventDoublesInput | CategoryUncheckedCreateWithoutEventDoublesInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| start | DateTime | No |
| finish | DateTime | No |
| event | EventCreateNestedOneWithoutMatchDatesInput | No |
| match | MatchCreateNestedOneWithoutMatchDateInput | No |
| court | CourtCreateNestedOneWithoutMatchDatesInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| eventId | String | No |
| matchId | String | Null | Yes |
| start | DateTime | No |
| finish | DateTime | No |
| courtId | String | No |
| Name | Type | Nullable |
|---|---|---|
| where | MatchDateWhereUniqueInput | No |
| create | MatchDateCreateWithoutAtRestInput | MatchDateUncheckedCreateWithoutAtRestInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| key | String | No |
| groupFinished | Boolean | No |
| categoryGroup | CategoryGroupCreateNestedOneWithoutGroupsInput | No |
| firstPlace | DoubleCreateNestedOneWithoutFirstPlaceInGroupsInput | No |
| secondPlace | DoubleCreateNestedOneWithoutSecondPlaceInGroupsInput | No |
| groupMatches | EventMatchCreateNestedManyWithoutDoublesGroupInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| key | String | No |
| categoryGroupId | String | Null | Yes |
| firstPlaceDoublesId | String | Null | Yes |
| secondPlaceDoublesId | String | Null | Yes |
| groupFinished | Boolean | No |
| groupMatches | EventMatchUncheckedCreateNestedManyWithoutDoublesGroupInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | DoublesGroupWhereUniqueInput | No |
| create | DoublesGroupCreateWithoutEventDoublesInput | DoublesGroupUncheckedCreateWithoutEventDoublesInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | EventUpdateWithoutEventDoublesInput | EventUncheckedUpdateWithoutEventDoublesInput | No |
| create | EventCreateWithoutEventDoublesInput | EventUncheckedCreateWithoutEventDoublesInput | No |
| where | EventWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | EventWhereInput | No |
| data | EventUpdateWithoutEventDoublesInput | EventUncheckedUpdateWithoutEventDoublesInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | DoubleUpdateWithoutEventDoubleInput | DoubleUncheckedUpdateWithoutEventDoubleInput | No |
| create | DoubleCreateWithoutEventDoubleInput | DoubleUncheckedCreateWithoutEventDoubleInput | No |
| where | DoubleWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | DoubleWhereInput | No |
| data | DoubleUpdateWithoutEventDoubleInput | DoubleUncheckedUpdateWithoutEventDoubleInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| players | PlayerUpdateManyWithoutDoublesNestedInput | No |
| matches | MatchUpdateManyWithoutDoublesNestedInput | No |
| category | CategoryUpdateOneRequiredWithoutDoublesNestedInput | No |
| games | GameUpdateManyWithoutDoublesNestedInput | No |
| sets | SetUpdateManyWithoutDoublesNestedInput | No |
| matchesWins | MatchUpdateManyWithoutWinnerNestedInput | No |
| setsWins | SetUpdateManyWithoutWinnerNestedInput | No |
| gamesWins | GameUpdateManyWithoutWinnerNestedInput | No |
| eventRequests | EventRequestUpdateManyWithoutDoubleNestedInput | No |
| invites | InviteUpdateManyWithoutDoubleNestedInput | No |
| firstPlaceInGroups | DoublesGroupUpdateManyWithoutFirstPlaceNestedInput | No |
| secondPlaceInGroups | DoublesGroupUpdateManyWithoutSecondPlaceNestedInput | No |
| firstPlaceInCategory | CategoryGroupUpdateManyWithoutFirstPlaceNestedInput | No |
| secondPlaceInCategory | CategoryGroupUpdateManyWithoutSecondPlaceNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | CategoryUpdateWithoutEventDoublesInput | CategoryUncheckedUpdateWithoutEventDoublesInput | No |
| create | CategoryCreateWithoutEventDoublesInput | CategoryUncheckedCreateWithoutEventDoublesInput | No |
| where | CategoryWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | CategoryWhereInput | No |
| data | CategoryUpdateWithoutEventDoublesInput | CategoryUncheckedUpdateWithoutEventDoublesInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| level | Int | IntFieldUpdateOperationsInput | No |
| type | CatType | EnumCatTypeFieldUpdateOperationsInput | No |
| players | PlayerUpdateManyWithoutCategoryNestedInput | No |
| doubles | DoubleUpdateManyWithoutCategoryNestedInput | No |
| events | EventUpdateManyWithoutCategoriesNestedInput | No |
| matches | MatchUpdateManyWithoutCategoryNestedInput | No |
| eventRequests | EventRequestUpdateManyWithoutCategoryNestedInput | No |
| categoryGroup | CategoryGroupUpdateManyWithoutCategoryNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| level | Int | IntFieldUpdateOperationsInput | No |
| type | CatType | EnumCatTypeFieldUpdateOperationsInput | No |
| players | PlayerUncheckedUpdateManyWithoutCategoryNestedInput | No |
| doubles | DoubleUncheckedUpdateManyWithoutCategoryNestedInput | No |
| events | EventUncheckedUpdateManyWithoutCategoriesNestedInput | No |
| matches | MatchUncheckedUpdateManyWithoutCategoryNestedInput | No |
| eventRequests | EventRequestUncheckedUpdateManyWithoutCategoryNestedInput | No |
| categoryGroup | CategoryGroupUncheckedUpdateManyWithoutCategoryNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | MatchDateUpdateWithoutAtRestInput | MatchDateUncheckedUpdateWithoutAtRestInput | No |
| create | MatchDateCreateWithoutAtRestInput | MatchDateUncheckedCreateWithoutAtRestInput | No |
| where | MatchDateWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | MatchDateWhereInput | No |
| data | MatchDateUpdateWithoutAtRestInput | MatchDateUncheckedUpdateWithoutAtRestInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| start | DateTime | DateTimeFieldUpdateOperationsInput | No |
| finish | DateTime | DateTimeFieldUpdateOperationsInput | No |
| event | EventUpdateOneRequiredWithoutMatchDatesNestedInput | No |
| match | MatchUpdateOneWithoutMatchDateNestedInput | No |
| court | CourtUpdateOneRequiredWithoutMatchDatesNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| eventId | String | StringFieldUpdateOperationsInput | No |
| matchId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| start | DateTime | DateTimeFieldUpdateOperationsInput | No |
| finish | DateTime | DateTimeFieldUpdateOperationsInput | No |
| courtId | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | DoublesGroupUpdateWithoutEventDoublesInput | DoublesGroupUncheckedUpdateWithoutEventDoublesInput | No |
| create | DoublesGroupCreateWithoutEventDoublesInput | DoublesGroupUncheckedCreateWithoutEventDoublesInput | No |
| where | DoublesGroupWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | DoublesGroupWhereInput | No |
| data | DoublesGroupUpdateWithoutEventDoublesInput | DoublesGroupUncheckedUpdateWithoutEventDoublesInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| key | String | StringFieldUpdateOperationsInput | No |
| groupFinished | Boolean | BoolFieldUpdateOperationsInput | No |
| categoryGroup | CategoryGroupUpdateOneWithoutGroupsNestedInput | No |
| firstPlace | DoubleUpdateOneWithoutFirstPlaceInGroupsNestedInput | No |
| secondPlace | DoubleUpdateOneWithoutSecondPlaceInGroupsNestedInput | No |
| groupMatches | EventMatchUpdateManyWithoutDoublesGroupNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| key | String | StringFieldUpdateOperationsInput | No |
| categoryGroupId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| firstPlaceDoublesId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| secondPlaceDoublesId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| groupFinished | Boolean | BoolFieldUpdateOperationsInput | No |
| groupMatches | EventMatchUncheckedUpdateManyWithoutDoublesGroupNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| firstName | String | Null | Yes |
| lastName | String | Null | Yes |
| position | PlayerPosition | Null | Yes |
| matches | MatchCreateNestedManyWithoutPlayersInput | No |
| doubles | DoubleCreateNestedManyWithoutPlayersInput | No |
| events | EventCreateNestedManyWithoutPlayersInput | No |
| user | UserCreateNestedOneWithoutPlayerInput | No |
| invites | InviteCreateNestedManyWithoutPlayersInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| firstName | String | Null | Yes |
| lastName | String | Null | Yes |
| position | PlayerPosition | Null | Yes |
| matches | MatchUncheckedCreateNestedManyWithoutPlayersInput | No |
| doubles | DoubleUncheckedCreateNestedManyWithoutPlayersInput | No |
| events | EventUncheckedCreateNestedManyWithoutPlayersInput | No |
| user | UserUncheckedCreateNestedOneWithoutPlayerInput | No |
| invites | InviteUncheckedCreateNestedManyWithoutPlayersInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | PlayerWhereUniqueInput | No |
| create | PlayerCreateWithoutCategoryInput | PlayerUncheckedCreateWithoutCategoryInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | PlayerCreateManyCategoryInput | PlayerCreateManyCategoryInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| players | PlayerCreateNestedManyWithoutDoublesInput | No |
| matches | MatchCreateNestedManyWithoutDoublesInput | No |
| games | GameCreateNestedManyWithoutDoublesInput | No |
| sets | SetCreateNestedManyWithoutDoublesInput | No |
| matchesWins | MatchCreateNestedManyWithoutWinnerInput | No |
| setsWins | SetCreateNestedManyWithoutWinnerInput | No |
| gamesWins | GameCreateNestedManyWithoutWinnerInput | No |
| eventRequests | EventRequestCreateNestedManyWithoutDoubleInput | No |
| eventDouble | EventDoubleCreateNestedManyWithoutDoubleInput | No |
| invites | InviteCreateNestedManyWithoutDoubleInput | No |
| firstPlaceInGroups | DoublesGroupCreateNestedManyWithoutFirstPlaceInput | No |
| secondPlaceInGroups | DoublesGroupCreateNestedManyWithoutSecondPlaceInput | No |
| firstPlaceInCategory | CategoryGroupCreateNestedManyWithoutFirstPlaceInput | No |
| secondPlaceInCategory | CategoryGroupCreateNestedManyWithoutSecondPlaceInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| players | PlayerUncheckedCreateNestedManyWithoutDoublesInput | No |
| matches | MatchUncheckedCreateNestedManyWithoutDoublesInput | No |
| games | GameUncheckedCreateNestedManyWithoutDoublesInput | No |
| sets | SetUncheckedCreateNestedManyWithoutDoublesInput | No |
| matchesWins | MatchUncheckedCreateNestedManyWithoutWinnerInput | No |
| setsWins | SetUncheckedCreateNestedManyWithoutWinnerInput | No |
| gamesWins | GameUncheckedCreateNestedManyWithoutWinnerInput | No |
| eventRequests | EventRequestUncheckedCreateNestedManyWithoutDoubleInput | No |
| eventDouble | EventDoubleUncheckedCreateNestedManyWithoutDoubleInput | No |
| invites | InviteUncheckedCreateNestedManyWithoutDoubleInput | No |
| firstPlaceInGroups | DoublesGroupUncheckedCreateNestedManyWithoutFirstPlaceInput | No |
| secondPlaceInGroups | DoublesGroupUncheckedCreateNestedManyWithoutSecondPlaceInput | No |
| firstPlaceInCategory | CategoryGroupUncheckedCreateNestedManyWithoutFirstPlaceInput | No |
| secondPlaceInCategory | CategoryGroupUncheckedCreateNestedManyWithoutSecondPlaceInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | DoubleWhereUniqueInput | No |
| create | DoubleCreateWithoutCategoryInput | DoubleUncheckedCreateWithoutCategoryInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | DoubleCreateManyCategoryInput | DoubleCreateManyCategoryInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| name | String | No |
| isActive | Boolean | No |
| isFinished | Boolean | No |
| startDate | DateTime | Null | Yes |
| finishDate | DateTime | Null | Yes |
| matchDurationInMinutes | Int | Null | Yes |
| timeOfFirstMatch | Int | Null | Yes |
| timeOfLastMatch | Int | Null | Yes |
| eventType | EventType | No |
| matchType | MatchType | No |
| isGroupMatchesFinished | Boolean | No |
| players | PlayerCreateNestedManyWithoutEventsInput | No |
| matches | MatchCreateNestedManyWithoutEventInput | No |
| places | PlaceCreateNestedManyWithoutEventsInput | No |
| eventRequests | EventRequestCreateNestedManyWithoutEventInput | No |
| eventDoubles | EventDoubleCreateNestedManyWithoutEventInput | No |
| games | GameCreateNestedManyWithoutEventsInput | No |
| sets | SetCreateNestedManyWithoutEventsInput | No |
| matchDates | MatchDateCreateNestedManyWithoutEventInput | No |
| courts | CourtCreateNestedManyWithoutEventsInput | No |
| invite | InviteCreateNestedOneWithoutEventInput | No |
| categoriesGroups | CategoryGroupCreateNestedManyWithoutEventInput | No |
| eventMatches | EventMatchCreateNestedManyWithoutEventInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | EventWhereUniqueInput | No |
| create | EventCreateWithoutCategoriesInput | EventUncheckedCreateWithoutCategoriesInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| isFinished | Boolean | No |
| type | MatchType | No |
| players | PlayerCreateNestedManyWithoutMatchesInput | No |
| winner | DoubleCreateNestedOneWithoutMatchesWinsInput | No |
| sets | SetCreateNestedManyWithoutMatchInput | No |
| doubles | DoubleCreateNestedManyWithoutMatchesInput | No |
| event | EventCreateNestedOneWithoutMatchesInput | No |
| matchDate | MatchDateCreateNestedOneWithoutMatchInput | No |
| court | CourtCreateNestedOneWithoutMatchesInput | No |
| invite | InviteCreateNestedOneWithoutMatchInput | No |
| eventMatch | EventMatchCreateNestedOneWithoutMatchInput | No |
| matchRefA | MatchesReferencedCreateNestedOneWithoutMatchAInput | No |
| matchRefB | MatchesReferencedCreateNestedOneWithoutMatchBInput | No |
| matchRef | MatchesReferencedCreateNestedOneWithoutRefMatchInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| isFinished | Boolean | No |
| winnerDoublesId | String | Null | Yes |
| eventId | String | Null | Yes |
| type | MatchType | No |
| courtId | String | Null | Yes |
| players | PlayerUncheckedCreateNestedManyWithoutMatchesInput | No |
| sets | SetUncheckedCreateNestedManyWithoutMatchInput | No |
| doubles | DoubleUncheckedCreateNestedManyWithoutMatchesInput | No |
| matchDate | MatchDateUncheckedCreateNestedOneWithoutMatchInput | No |
| invite | InviteUncheckedCreateNestedOneWithoutMatchInput | No |
| eventMatch | EventMatchUncheckedCreateNestedOneWithoutMatchInput | No |
| matchRefA | MatchesReferencedUncheckedCreateNestedOneWithoutMatchAInput | No |
| matchRefB | MatchesReferencedUncheckedCreateNestedOneWithoutMatchBInput | No |
| matchRef | MatchesReferencedUncheckedCreateNestedOneWithoutRefMatchInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | MatchWhereUniqueInput | No |
| create | MatchCreateWithoutCategoryInput | MatchUncheckedCreateWithoutCategoryInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | MatchCreateManyCategoryInput | MatchCreateManyCategoryInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| event | EventCreateNestedOneWithoutEventDoublesInput | No |
| double | DoubleCreateNestedOneWithoutEventDoubleInput | No |
| atRest | MatchDateCreateNestedOneWithoutAtRestInput | No |
| DoublesGroup | DoublesGroupCreateNestedOneWithoutEventDoublesInput | No |
| Name | Type | Nullable |
|---|---|---|
| eventId | String | No |
| doubleId | String | No |
| atRestId | String | Null | Yes |
| doublesGroupId | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| where | EventDoubleWhereUniqueInput | No |
| create | EventDoubleCreateWithoutCategoryInput | EventDoubleUncheckedCreateWithoutCategoryInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | EventDoubleCreateManyCategoryInput | EventDoubleCreateManyCategoryInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| status | RequestStatus | No |
| event | EventCreateNestedOneWithoutEventRequestsInput | No |
| double | DoubleCreateNestedOneWithoutEventRequestsInput | No |
| Name | Type | Nullable |
|---|---|---|
| eventId | String | No |
| doubleId | String | No |
| status | RequestStatus | No |
| Name | Type | Nullable |
|---|---|---|
| where | EventRequestWhereUniqueInput | No |
| create | EventRequestCreateWithoutCategoryInput | EventRequestUncheckedCreateWithoutCategoryInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | EventRequestCreateManyCategoryInput | EventRequestCreateManyCategoryInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| groupsStageFinished | Boolean | No |
| categoryFinished | Boolean | No |
| isFinalMatchesCreated | Boolean | No |
| groups | DoublesGroupCreateNestedManyWithoutCategoryGroupInput | No |
| event | EventCreateNestedOneWithoutCategoriesGroupsInput | No |
| finalMatches | EventMatchCreateNestedManyWithoutCategoryGroupInput | No |
| matchesWithReference | MatchesReferencedCreateNestedManyWithoutCategoryGroupInput | No |
| firstPlace | DoubleCreateNestedOneWithoutFirstPlaceInCategoryInput | No |
| secondPlace | DoubleCreateNestedOneWithoutSecondPlaceInCategoryInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| eventId | String | Null | Yes |
| firstPlaceId | String | Null | Yes |
| secondPlaceId | String | Null | Yes |
| groupsStageFinished | Boolean | No |
| categoryFinished | Boolean | No |
| isFinalMatchesCreated | Boolean | No |
| groups | DoublesGroupUncheckedCreateNestedManyWithoutCategoryGroupInput | No |
| finalMatches | EventMatchUncheckedCreateNestedManyWithoutCategoryGroupInput | No |
| matchesWithReference | MatchesReferencedUncheckedCreateNestedManyWithoutCategoryGroupInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | CategoryGroupWhereUniqueInput | No |
| create | CategoryGroupCreateWithoutCategoryInput | CategoryGroupUncheckedCreateWithoutCategoryInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | CategoryGroupCreateManyCategoryInput | CategoryGroupCreateManyCategoryInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| where | PlayerWhereUniqueInput | No |
| update | PlayerUpdateWithoutCategoryInput | PlayerUncheckedUpdateWithoutCategoryInput | No |
| create | PlayerCreateWithoutCategoryInput | PlayerUncheckedCreateWithoutCategoryInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | PlayerWhereUniqueInput | No |
| data | PlayerUpdateWithoutCategoryInput | PlayerUncheckedUpdateWithoutCategoryInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | PlayerScalarWhereInput | No |
| data | PlayerUpdateManyMutationInput | PlayerUncheckedUpdateManyWithoutCategoryInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | DoubleWhereUniqueInput | No |
| update | DoubleUpdateWithoutCategoryInput | DoubleUncheckedUpdateWithoutCategoryInput | No |
| create | DoubleCreateWithoutCategoryInput | DoubleUncheckedCreateWithoutCategoryInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | DoubleWhereUniqueInput | No |
| data | DoubleUpdateWithoutCategoryInput | DoubleUncheckedUpdateWithoutCategoryInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | DoubleScalarWhereInput | No |
| data | DoubleUpdateManyMutationInput | DoubleUncheckedUpdateManyWithoutCategoryInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | DoubleScalarWhereInput | DoubleScalarWhereInput[] | No |
| OR | DoubleScalarWhereInput[] | No |
| NOT | DoubleScalarWhereInput | DoubleScalarWhereInput[] | No |
| id | StringFilter | String | No |
| categoryId | StringFilter | String | No |
| Name | Type | Nullable |
|---|---|---|
| where | EventWhereUniqueInput | No |
| update | EventUpdateWithoutCategoriesInput | EventUncheckedUpdateWithoutCategoriesInput | No |
| create | EventCreateWithoutCategoriesInput | EventUncheckedCreateWithoutCategoriesInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | EventWhereUniqueInput | No |
| data | EventUpdateWithoutCategoriesInput | EventUncheckedUpdateWithoutCategoriesInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | EventScalarWhereInput | No |
| data | EventUpdateManyMutationInput | EventUncheckedUpdateManyWithoutCategoriesInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | MatchWhereUniqueInput | No |
| update | MatchUpdateWithoutCategoryInput | MatchUncheckedUpdateWithoutCategoryInput | No |
| create | MatchCreateWithoutCategoryInput | MatchUncheckedCreateWithoutCategoryInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | MatchWhereUniqueInput | No |
| data | MatchUpdateWithoutCategoryInput | MatchUncheckedUpdateWithoutCategoryInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | MatchScalarWhereInput | No |
| data | MatchUpdateManyMutationInput | MatchUncheckedUpdateManyWithoutCategoryInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | EventDoubleWhereUniqueInput | No |
| update | EventDoubleUpdateWithoutCategoryInput | EventDoubleUncheckedUpdateWithoutCategoryInput | No |
| create | EventDoubleCreateWithoutCategoryInput | EventDoubleUncheckedCreateWithoutCategoryInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | EventDoubleWhereUniqueInput | No |
| data | EventDoubleUpdateWithoutCategoryInput | EventDoubleUncheckedUpdateWithoutCategoryInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | EventDoubleScalarWhereInput | No |
| data | EventDoubleUpdateManyMutationInput | EventDoubleUncheckedUpdateManyWithoutCategoryInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | EventRequestWhereUniqueInput | No |
| update | EventRequestUpdateWithoutCategoryInput | EventRequestUncheckedUpdateWithoutCategoryInput | No |
| create | EventRequestCreateWithoutCategoryInput | EventRequestUncheckedCreateWithoutCategoryInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | EventRequestWhereUniqueInput | No |
| data | EventRequestUpdateWithoutCategoryInput | EventRequestUncheckedUpdateWithoutCategoryInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | EventRequestScalarWhereInput | No |
| data | EventRequestUpdateManyMutationInput | EventRequestUncheckedUpdateManyWithoutCategoryInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | CategoryGroupWhereUniqueInput | No |
| update | CategoryGroupUpdateWithoutCategoryInput | CategoryGroupUncheckedUpdateWithoutCategoryInput | No |
| create | CategoryGroupCreateWithoutCategoryInput | CategoryGroupUncheckedCreateWithoutCategoryInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | CategoryGroupWhereUniqueInput | No |
| data | CategoryGroupUpdateWithoutCategoryInput | CategoryGroupUncheckedUpdateWithoutCategoryInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | CategoryGroupScalarWhereInput | No |
| data | CategoryGroupUpdateManyMutationInput | CategoryGroupUncheckedUpdateManyWithoutCategoryInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| name | String | No |
| isActive | Boolean | No |
| isFinished | Boolean | No |
| startDate | DateTime | Null | Yes |
| finishDate | DateTime | Null | Yes |
| matchDurationInMinutes | Int | Null | Yes |
| timeOfFirstMatch | Int | Null | Yes |
| timeOfLastMatch | Int | Null | Yes |
| eventType | EventType | No |
| matchType | MatchType | No |
| isGroupMatchesFinished | Boolean | No |
| categories | CategoryCreateNestedManyWithoutEventsInput | No |
| players | PlayerCreateNestedManyWithoutEventsInput | No |
| matches | MatchCreateNestedManyWithoutEventInput | No |
| places | PlaceCreateNestedManyWithoutEventsInput | No |
| eventRequests | EventRequestCreateNestedManyWithoutEventInput | No |
| eventDoubles | EventDoubleCreateNestedManyWithoutEventInput | No |
| games | GameCreateNestedManyWithoutEventsInput | No |
| sets | SetCreateNestedManyWithoutEventsInput | No |
| matchDates | MatchDateCreateNestedManyWithoutEventInput | No |
| courts | CourtCreateNestedManyWithoutEventsInput | No |
| invite | InviteCreateNestedOneWithoutEventInput | No |
| categoriesGroups | CategoryGroupCreateNestedManyWithoutEventInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | EventWhereUniqueInput | No |
| create | EventCreateWithoutEventMatchesInput | EventUncheckedCreateWithoutEventMatchesInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| isFinished | Boolean | No |
| type | MatchType | No |
| players | PlayerCreateNestedManyWithoutMatchesInput | No |
| category | CategoryCreateNestedOneWithoutMatchesInput | No |
| winner | DoubleCreateNestedOneWithoutMatchesWinsInput | No |
| sets | SetCreateNestedManyWithoutMatchInput | No |
| doubles | DoubleCreateNestedManyWithoutMatchesInput | No |
| event | EventCreateNestedOneWithoutMatchesInput | No |
| matchDate | MatchDateCreateNestedOneWithoutMatchInput | No |
| court | CourtCreateNestedOneWithoutMatchesInput | No |
| invite | InviteCreateNestedOneWithoutMatchInput | No |
| matchRefA | MatchesReferencedCreateNestedOneWithoutMatchAInput | No |
| matchRefB | MatchesReferencedCreateNestedOneWithoutMatchBInput | No |
| matchRef | MatchesReferencedCreateNestedOneWithoutRefMatchInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| isFinished | Boolean | No |
| categoryId | String | Null | Yes |
| winnerDoublesId | String | Null | Yes |
| eventId | String | Null | Yes |
| type | MatchType | No |
| courtId | String | Null | Yes |
| players | PlayerUncheckedCreateNestedManyWithoutMatchesInput | No |
| sets | SetUncheckedCreateNestedManyWithoutMatchInput | No |
| doubles | DoubleUncheckedCreateNestedManyWithoutMatchesInput | No |
| matchDate | MatchDateUncheckedCreateNestedOneWithoutMatchInput | No |
| invite | InviteUncheckedCreateNestedOneWithoutMatchInput | No |
| matchRefA | MatchesReferencedUncheckedCreateNestedOneWithoutMatchAInput | No |
| matchRefB | MatchesReferencedUncheckedCreateNestedOneWithoutMatchBInput | No |
| matchRef | MatchesReferencedUncheckedCreateNestedOneWithoutRefMatchInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | MatchWhereUniqueInput | No |
| create | MatchCreateWithoutEventMatchInput | MatchUncheckedCreateWithoutEventMatchInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| groupsStageFinished | Boolean | No |
| categoryFinished | Boolean | No |
| isFinalMatchesCreated | Boolean | No |
| category | CategoryCreateNestedOneWithoutCategoryGroupInput | No |
| groups | DoublesGroupCreateNestedManyWithoutCategoryGroupInput | No |
| event | EventCreateNestedOneWithoutCategoriesGroupsInput | No |
| matchesWithReference | MatchesReferencedCreateNestedManyWithoutCategoryGroupInput | No |
| firstPlace | DoubleCreateNestedOneWithoutFirstPlaceInCategoryInput | No |
| secondPlace | DoubleCreateNestedOneWithoutSecondPlaceInCategoryInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| categoryId | String | No |
| eventId | String | Null | Yes |
| firstPlaceId | String | Null | Yes |
| secondPlaceId | String | Null | Yes |
| groupsStageFinished | Boolean | No |
| categoryFinished | Boolean | No |
| isFinalMatchesCreated | Boolean | No |
| groups | DoublesGroupUncheckedCreateNestedManyWithoutCategoryGroupInput | No |
| matchesWithReference | MatchesReferencedUncheckedCreateNestedManyWithoutCategoryGroupInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | CategoryGroupWhereUniqueInput | No |
| create | CategoryGroupCreateWithoutFinalMatchesInput | CategoryGroupUncheckedCreateWithoutFinalMatchesInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| key | String | No |
| groupFinished | Boolean | No |
| eventDoubles | EventDoubleCreateNestedManyWithoutDoublesGroupInput | No |
| categoryGroup | CategoryGroupCreateNestedOneWithoutGroupsInput | No |
| firstPlace | DoubleCreateNestedOneWithoutFirstPlaceInGroupsInput | No |
| secondPlace | DoubleCreateNestedOneWithoutSecondPlaceInGroupsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| key | String | No |
| categoryGroupId | String | Null | Yes |
| firstPlaceDoublesId | String | Null | Yes |
| secondPlaceDoublesId | String | Null | Yes |
| groupFinished | Boolean | No |
| eventDoubles | EventDoubleUncheckedCreateNestedManyWithoutDoublesGroupInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | DoublesGroupWhereUniqueInput | No |
| create | DoublesGroupCreateWithoutGroupMatchesInput | DoublesGroupUncheckedCreateWithoutGroupMatchesInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | EventUpdateWithoutEventMatchesInput | EventUncheckedUpdateWithoutEventMatchesInput | No |
| create | EventCreateWithoutEventMatchesInput | EventUncheckedCreateWithoutEventMatchesInput | No |
| where | EventWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | EventWhereInput | No |
| data | EventUpdateWithoutEventMatchesInput | EventUncheckedUpdateWithoutEventMatchesInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | MatchUpdateWithoutEventMatchInput | MatchUncheckedUpdateWithoutEventMatchInput | No |
| create | MatchCreateWithoutEventMatchInput | MatchUncheckedCreateWithoutEventMatchInput | No |
| where | MatchWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | MatchWhereInput | No |
| data | MatchUpdateWithoutEventMatchInput | MatchUncheckedUpdateWithoutEventMatchInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| isFinished | Boolean | BoolFieldUpdateOperationsInput | No |
| type | MatchType | EnumMatchTypeFieldUpdateOperationsInput | No |
| players | PlayerUpdateManyWithoutMatchesNestedInput | No |
| category | CategoryUpdateOneWithoutMatchesNestedInput | No |
| winner | DoubleUpdateOneWithoutMatchesWinsNestedInput | No |
| sets | SetUpdateManyWithoutMatchNestedInput | No |
| doubles | DoubleUpdateManyWithoutMatchesNestedInput | No |
| event | EventUpdateOneWithoutMatchesNestedInput | No |
| matchDate | MatchDateUpdateOneWithoutMatchNestedInput | No |
| court | CourtUpdateOneWithoutMatchesNestedInput | No |
| invite | InviteUpdateOneWithoutMatchNestedInput | No |
| matchRefA | MatchesReferencedUpdateOneWithoutMatchANestedInput | No |
| matchRefB | MatchesReferencedUpdateOneWithoutMatchBNestedInput | No |
| matchRef | MatchesReferencedUpdateOneWithoutRefMatchNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| isFinished | Boolean | BoolFieldUpdateOperationsInput | No |
| categoryId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| winnerDoublesId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| eventId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| type | MatchType | EnumMatchTypeFieldUpdateOperationsInput | No |
| courtId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| players | PlayerUncheckedUpdateManyWithoutMatchesNestedInput | No |
| sets | SetUncheckedUpdateManyWithoutMatchNestedInput | No |
| doubles | DoubleUncheckedUpdateManyWithoutMatchesNestedInput | No |
| matchDate | MatchDateUncheckedUpdateOneWithoutMatchNestedInput | No |
| invite | InviteUncheckedUpdateOneWithoutMatchNestedInput | No |
| matchRefA | MatchesReferencedUncheckedUpdateOneWithoutMatchANestedInput | No |
| matchRefB | MatchesReferencedUncheckedUpdateOneWithoutMatchBNestedInput | No |
| matchRef | MatchesReferencedUncheckedUpdateOneWithoutRefMatchNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | CategoryGroupUpdateWithoutFinalMatchesInput | CategoryGroupUncheckedUpdateWithoutFinalMatchesInput | No |
| create | CategoryGroupCreateWithoutFinalMatchesInput | CategoryGroupUncheckedCreateWithoutFinalMatchesInput | No |
| where | CategoryGroupWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | CategoryGroupWhereInput | No |
| data | CategoryGroupUpdateWithoutFinalMatchesInput | CategoryGroupUncheckedUpdateWithoutFinalMatchesInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| groupsStageFinished | Boolean | BoolFieldUpdateOperationsInput | No |
| categoryFinished | Boolean | BoolFieldUpdateOperationsInput | No |
| isFinalMatchesCreated | Boolean | BoolFieldUpdateOperationsInput | No |
| category | CategoryUpdateOneRequiredWithoutCategoryGroupNestedInput | No |
| groups | DoublesGroupUpdateManyWithoutCategoryGroupNestedInput | No |
| event | EventUpdateOneWithoutCategoriesGroupsNestedInput | No |
| matchesWithReference | MatchesReferencedUpdateManyWithoutCategoryGroupNestedInput | No |
| firstPlace | DoubleUpdateOneWithoutFirstPlaceInCategoryNestedInput | No |
| secondPlace | DoubleUpdateOneWithoutSecondPlaceInCategoryNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| categoryId | String | StringFieldUpdateOperationsInput | No |
| eventId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| firstPlaceId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| secondPlaceId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| groupsStageFinished | Boolean | BoolFieldUpdateOperationsInput | No |
| categoryFinished | Boolean | BoolFieldUpdateOperationsInput | No |
| isFinalMatchesCreated | Boolean | BoolFieldUpdateOperationsInput | No |
| groups | DoublesGroupUncheckedUpdateManyWithoutCategoryGroupNestedInput | No |
| matchesWithReference | MatchesReferencedUncheckedUpdateManyWithoutCategoryGroupNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | DoublesGroupUpdateWithoutGroupMatchesInput | DoublesGroupUncheckedUpdateWithoutGroupMatchesInput | No |
| create | DoublesGroupCreateWithoutGroupMatchesInput | DoublesGroupUncheckedCreateWithoutGroupMatchesInput | No |
| where | DoublesGroupWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | DoublesGroupWhereInput | No |
| data | DoublesGroupUpdateWithoutGroupMatchesInput | DoublesGroupUncheckedUpdateWithoutGroupMatchesInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| key | String | StringFieldUpdateOperationsInput | No |
| groupFinished | Boolean | BoolFieldUpdateOperationsInput | No |
| eventDoubles | EventDoubleUpdateManyWithoutDoublesGroupNestedInput | No |
| categoryGroup | CategoryGroupUpdateOneWithoutGroupsNestedInput | No |
| firstPlace | DoubleUpdateOneWithoutFirstPlaceInGroupsNestedInput | No |
| secondPlace | DoubleUpdateOneWithoutSecondPlaceInGroupsNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| key | String | StringFieldUpdateOperationsInput | No |
| categoryGroupId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| firstPlaceDoublesId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| secondPlaceDoublesId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| groupFinished | Boolean | BoolFieldUpdateOperationsInput | No |
| eventDoubles | EventDoubleUncheckedUpdateManyWithoutDoublesGroupNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| isFinished | Boolean | No |
| type | MatchType | No |
| players | PlayerCreateNestedManyWithoutMatchesInput | No |
| category | CategoryCreateNestedOneWithoutMatchesInput | No |
| winner | DoubleCreateNestedOneWithoutMatchesWinsInput | No |
| sets | SetCreateNestedManyWithoutMatchInput | No |
| doubles | DoubleCreateNestedManyWithoutMatchesInput | No |
| event | EventCreateNestedOneWithoutMatchesInput | No |
| matchDate | MatchDateCreateNestedOneWithoutMatchInput | No |
| court | CourtCreateNestedOneWithoutMatchesInput | No |
| invite | InviteCreateNestedOneWithoutMatchInput | No |
| eventMatch | EventMatchCreateNestedOneWithoutMatchInput | No |
| matchRefB | MatchesReferencedCreateNestedOneWithoutMatchBInput | No |
| matchRef | MatchesReferencedCreateNestedOneWithoutRefMatchInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| isFinished | Boolean | No |
| categoryId | String | Null | Yes |
| winnerDoublesId | String | Null | Yes |
| eventId | String | Null | Yes |
| type | MatchType | No |
| courtId | String | Null | Yes |
| players | PlayerUncheckedCreateNestedManyWithoutMatchesInput | No |
| sets | SetUncheckedCreateNestedManyWithoutMatchInput | No |
| doubles | DoubleUncheckedCreateNestedManyWithoutMatchesInput | No |
| matchDate | MatchDateUncheckedCreateNestedOneWithoutMatchInput | No |
| invite | InviteUncheckedCreateNestedOneWithoutMatchInput | No |
| eventMatch | EventMatchUncheckedCreateNestedOneWithoutMatchInput | No |
| matchRefB | MatchesReferencedUncheckedCreateNestedOneWithoutMatchBInput | No |
| matchRef | MatchesReferencedUncheckedCreateNestedOneWithoutRefMatchInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | MatchWhereUniqueInput | No |
| create | MatchCreateWithoutMatchRefAInput | MatchUncheckedCreateWithoutMatchRefAInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| isFinished | Boolean | No |
| type | MatchType | No |
| players | PlayerCreateNestedManyWithoutMatchesInput | No |
| category | CategoryCreateNestedOneWithoutMatchesInput | No |
| winner | DoubleCreateNestedOneWithoutMatchesWinsInput | No |
| sets | SetCreateNestedManyWithoutMatchInput | No |
| doubles | DoubleCreateNestedManyWithoutMatchesInput | No |
| event | EventCreateNestedOneWithoutMatchesInput | No |
| matchDate | MatchDateCreateNestedOneWithoutMatchInput | No |
| court | CourtCreateNestedOneWithoutMatchesInput | No |
| invite | InviteCreateNestedOneWithoutMatchInput | No |
| eventMatch | EventMatchCreateNestedOneWithoutMatchInput | No |
| matchRefA | MatchesReferencedCreateNestedOneWithoutMatchAInput | No |
| matchRef | MatchesReferencedCreateNestedOneWithoutRefMatchInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| isFinished | Boolean | No |
| categoryId | String | Null | Yes |
| winnerDoublesId | String | Null | Yes |
| eventId | String | Null | Yes |
| type | MatchType | No |
| courtId | String | Null | Yes |
| players | PlayerUncheckedCreateNestedManyWithoutMatchesInput | No |
| sets | SetUncheckedCreateNestedManyWithoutMatchInput | No |
| doubles | DoubleUncheckedCreateNestedManyWithoutMatchesInput | No |
| matchDate | MatchDateUncheckedCreateNestedOneWithoutMatchInput | No |
| invite | InviteUncheckedCreateNestedOneWithoutMatchInput | No |
| eventMatch | EventMatchUncheckedCreateNestedOneWithoutMatchInput | No |
| matchRefA | MatchesReferencedUncheckedCreateNestedOneWithoutMatchAInput | No |
| matchRef | MatchesReferencedUncheckedCreateNestedOneWithoutRefMatchInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | MatchWhereUniqueInput | No |
| create | MatchCreateWithoutMatchRefBInput | MatchUncheckedCreateWithoutMatchRefBInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| isFinished | Boolean | No |
| type | MatchType | No |
| players | PlayerCreateNestedManyWithoutMatchesInput | No |
| category | CategoryCreateNestedOneWithoutMatchesInput | No |
| winner | DoubleCreateNestedOneWithoutMatchesWinsInput | No |
| sets | SetCreateNestedManyWithoutMatchInput | No |
| doubles | DoubleCreateNestedManyWithoutMatchesInput | No |
| event | EventCreateNestedOneWithoutMatchesInput | No |
| matchDate | MatchDateCreateNestedOneWithoutMatchInput | No |
| court | CourtCreateNestedOneWithoutMatchesInput | No |
| invite | InviteCreateNestedOneWithoutMatchInput | No |
| eventMatch | EventMatchCreateNestedOneWithoutMatchInput | No |
| matchRefA | MatchesReferencedCreateNestedOneWithoutMatchAInput | No |
| matchRefB | MatchesReferencedCreateNestedOneWithoutMatchBInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| isFinished | Boolean | No |
| categoryId | String | Null | Yes |
| winnerDoublesId | String | Null | Yes |
| eventId | String | Null | Yes |
| type | MatchType | No |
| courtId | String | Null | Yes |
| players | PlayerUncheckedCreateNestedManyWithoutMatchesInput | No |
| sets | SetUncheckedCreateNestedManyWithoutMatchInput | No |
| doubles | DoubleUncheckedCreateNestedManyWithoutMatchesInput | No |
| matchDate | MatchDateUncheckedCreateNestedOneWithoutMatchInput | No |
| invite | InviteUncheckedCreateNestedOneWithoutMatchInput | No |
| eventMatch | EventMatchUncheckedCreateNestedOneWithoutMatchInput | No |
| matchRefA | MatchesReferencedUncheckedCreateNestedOneWithoutMatchAInput | No |
| matchRefB | MatchesReferencedUncheckedCreateNestedOneWithoutMatchBInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | MatchWhereUniqueInput | No |
| create | MatchCreateWithoutMatchRefInput | MatchUncheckedCreateWithoutMatchRefInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| groupsStageFinished | Boolean | No |
| categoryFinished | Boolean | No |
| isFinalMatchesCreated | Boolean | No |
| category | CategoryCreateNestedOneWithoutCategoryGroupInput | No |
| groups | DoublesGroupCreateNestedManyWithoutCategoryGroupInput | No |
| event | EventCreateNestedOneWithoutCategoriesGroupsInput | No |
| finalMatches | EventMatchCreateNestedManyWithoutCategoryGroupInput | No |
| firstPlace | DoubleCreateNestedOneWithoutFirstPlaceInCategoryInput | No |
| secondPlace | DoubleCreateNestedOneWithoutSecondPlaceInCategoryInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| categoryId | String | No |
| eventId | String | Null | Yes |
| firstPlaceId | String | Null | Yes |
| secondPlaceId | String | Null | Yes |
| groupsStageFinished | Boolean | No |
| categoryFinished | Boolean | No |
| isFinalMatchesCreated | Boolean | No |
| groups | DoublesGroupUncheckedCreateNestedManyWithoutCategoryGroupInput | No |
| finalMatches | EventMatchUncheckedCreateNestedManyWithoutCategoryGroupInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | CategoryGroupWhereUniqueInput | No |
| create | CategoryGroupCreateWithoutMatchesWithReferenceInput | CategoryGroupUncheckedCreateWithoutMatchesWithReferenceInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | MatchUpdateWithoutMatchRefAInput | MatchUncheckedUpdateWithoutMatchRefAInput | No |
| create | MatchCreateWithoutMatchRefAInput | MatchUncheckedCreateWithoutMatchRefAInput | No |
| where | MatchWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | MatchWhereInput | No |
| data | MatchUpdateWithoutMatchRefAInput | MatchUncheckedUpdateWithoutMatchRefAInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| isFinished | Boolean | BoolFieldUpdateOperationsInput | No |
| type | MatchType | EnumMatchTypeFieldUpdateOperationsInput | No |
| players | PlayerUpdateManyWithoutMatchesNestedInput | No |
| category | CategoryUpdateOneWithoutMatchesNestedInput | No |
| winner | DoubleUpdateOneWithoutMatchesWinsNestedInput | No |
| sets | SetUpdateManyWithoutMatchNestedInput | No |
| doubles | DoubleUpdateManyWithoutMatchesNestedInput | No |
| event | EventUpdateOneWithoutMatchesNestedInput | No |
| matchDate | MatchDateUpdateOneWithoutMatchNestedInput | No |
| court | CourtUpdateOneWithoutMatchesNestedInput | No |
| invite | InviteUpdateOneWithoutMatchNestedInput | No |
| eventMatch | EventMatchUpdateOneWithoutMatchNestedInput | No |
| matchRefB | MatchesReferencedUpdateOneWithoutMatchBNestedInput | No |
| matchRef | MatchesReferencedUpdateOneWithoutRefMatchNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| isFinished | Boolean | BoolFieldUpdateOperationsInput | No |
| categoryId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| winnerDoublesId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| eventId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| type | MatchType | EnumMatchTypeFieldUpdateOperationsInput | No |
| courtId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| players | PlayerUncheckedUpdateManyWithoutMatchesNestedInput | No |
| sets | SetUncheckedUpdateManyWithoutMatchNestedInput | No |
| doubles | DoubleUncheckedUpdateManyWithoutMatchesNestedInput | No |
| matchDate | MatchDateUncheckedUpdateOneWithoutMatchNestedInput | No |
| invite | InviteUncheckedUpdateOneWithoutMatchNestedInput | No |
| eventMatch | EventMatchUncheckedUpdateOneWithoutMatchNestedInput | No |
| matchRefB | MatchesReferencedUncheckedUpdateOneWithoutMatchBNestedInput | No |
| matchRef | MatchesReferencedUncheckedUpdateOneWithoutRefMatchNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | MatchUpdateWithoutMatchRefBInput | MatchUncheckedUpdateWithoutMatchRefBInput | No |
| create | MatchCreateWithoutMatchRefBInput | MatchUncheckedCreateWithoutMatchRefBInput | No |
| where | MatchWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | MatchWhereInput | No |
| data | MatchUpdateWithoutMatchRefBInput | MatchUncheckedUpdateWithoutMatchRefBInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| isFinished | Boolean | BoolFieldUpdateOperationsInput | No |
| type | MatchType | EnumMatchTypeFieldUpdateOperationsInput | No |
| players | PlayerUpdateManyWithoutMatchesNestedInput | No |
| category | CategoryUpdateOneWithoutMatchesNestedInput | No |
| winner | DoubleUpdateOneWithoutMatchesWinsNestedInput | No |
| sets | SetUpdateManyWithoutMatchNestedInput | No |
| doubles | DoubleUpdateManyWithoutMatchesNestedInput | No |
| event | EventUpdateOneWithoutMatchesNestedInput | No |
| matchDate | MatchDateUpdateOneWithoutMatchNestedInput | No |
| court | CourtUpdateOneWithoutMatchesNestedInput | No |
| invite | InviteUpdateOneWithoutMatchNestedInput | No |
| eventMatch | EventMatchUpdateOneWithoutMatchNestedInput | No |
| matchRefA | MatchesReferencedUpdateOneWithoutMatchANestedInput | No |
| matchRef | MatchesReferencedUpdateOneWithoutRefMatchNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| isFinished | Boolean | BoolFieldUpdateOperationsInput | No |
| categoryId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| winnerDoublesId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| eventId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| type | MatchType | EnumMatchTypeFieldUpdateOperationsInput | No |
| courtId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| players | PlayerUncheckedUpdateManyWithoutMatchesNestedInput | No |
| sets | SetUncheckedUpdateManyWithoutMatchNestedInput | No |
| doubles | DoubleUncheckedUpdateManyWithoutMatchesNestedInput | No |
| matchDate | MatchDateUncheckedUpdateOneWithoutMatchNestedInput | No |
| invite | InviteUncheckedUpdateOneWithoutMatchNestedInput | No |
| eventMatch | EventMatchUncheckedUpdateOneWithoutMatchNestedInput | No |
| matchRefA | MatchesReferencedUncheckedUpdateOneWithoutMatchANestedInput | No |
| matchRef | MatchesReferencedUncheckedUpdateOneWithoutRefMatchNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | MatchUpdateWithoutMatchRefInput | MatchUncheckedUpdateWithoutMatchRefInput | No |
| create | MatchCreateWithoutMatchRefInput | MatchUncheckedCreateWithoutMatchRefInput | No |
| where | MatchWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | MatchWhereInput | No |
| data | MatchUpdateWithoutMatchRefInput | MatchUncheckedUpdateWithoutMatchRefInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| isFinished | Boolean | BoolFieldUpdateOperationsInput | No |
| type | MatchType | EnumMatchTypeFieldUpdateOperationsInput | No |
| players | PlayerUpdateManyWithoutMatchesNestedInput | No |
| category | CategoryUpdateOneWithoutMatchesNestedInput | No |
| winner | DoubleUpdateOneWithoutMatchesWinsNestedInput | No |
| sets | SetUpdateManyWithoutMatchNestedInput | No |
| doubles | DoubleUpdateManyWithoutMatchesNestedInput | No |
| event | EventUpdateOneWithoutMatchesNestedInput | No |
| matchDate | MatchDateUpdateOneWithoutMatchNestedInput | No |
| court | CourtUpdateOneWithoutMatchesNestedInput | No |
| invite | InviteUpdateOneWithoutMatchNestedInput | No |
| eventMatch | EventMatchUpdateOneWithoutMatchNestedInput | No |
| matchRefA | MatchesReferencedUpdateOneWithoutMatchANestedInput | No |
| matchRefB | MatchesReferencedUpdateOneWithoutMatchBNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| isFinished | Boolean | BoolFieldUpdateOperationsInput | No |
| categoryId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| winnerDoublesId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| eventId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| type | MatchType | EnumMatchTypeFieldUpdateOperationsInput | No |
| courtId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| players | PlayerUncheckedUpdateManyWithoutMatchesNestedInput | No |
| sets | SetUncheckedUpdateManyWithoutMatchNestedInput | No |
| doubles | DoubleUncheckedUpdateManyWithoutMatchesNestedInput | No |
| matchDate | MatchDateUncheckedUpdateOneWithoutMatchNestedInput | No |
| invite | InviteUncheckedUpdateOneWithoutMatchNestedInput | No |
| eventMatch | EventMatchUncheckedUpdateOneWithoutMatchNestedInput | No |
| matchRefA | MatchesReferencedUncheckedUpdateOneWithoutMatchANestedInput | No |
| matchRefB | MatchesReferencedUncheckedUpdateOneWithoutMatchBNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | CategoryGroupWhereInput | No |
| data | CategoryGroupUpdateWithoutMatchesWithReferenceInput | CategoryGroupUncheckedUpdateWithoutMatchesWithReferenceInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| groupsStageFinished | Boolean | BoolFieldUpdateOperationsInput | No |
| categoryFinished | Boolean | BoolFieldUpdateOperationsInput | No |
| isFinalMatchesCreated | Boolean | BoolFieldUpdateOperationsInput | No |
| category | CategoryUpdateOneRequiredWithoutCategoryGroupNestedInput | No |
| groups | DoublesGroupUpdateManyWithoutCategoryGroupNestedInput | No |
| event | EventUpdateOneWithoutCategoriesGroupsNestedInput | No |
| finalMatches | EventMatchUpdateManyWithoutCategoryGroupNestedInput | No |
| firstPlace | DoubleUpdateOneWithoutFirstPlaceInCategoryNestedInput | No |
| secondPlace | DoubleUpdateOneWithoutSecondPlaceInCategoryNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| categoryId | String | StringFieldUpdateOperationsInput | No |
| eventId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| firstPlaceId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| secondPlaceId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| groupsStageFinished | Boolean | BoolFieldUpdateOperationsInput | No |
| categoryFinished | Boolean | BoolFieldUpdateOperationsInput | No |
| isFinalMatchesCreated | Boolean | BoolFieldUpdateOperationsInput | No |
| groups | DoublesGroupUncheckedUpdateManyWithoutCategoryGroupNestedInput | No |
| finalMatches | EventMatchUncheckedUpdateManyWithoutCategoryGroupNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| firstName | String | Null | Yes |
| lastName | String | Null | Yes |
| position | PlayerPosition | Null | Yes |
| category | CategoryCreateNestedOneWithoutPlayersInput | No |
| doubles | DoubleCreateNestedManyWithoutPlayersInput | No |
| events | EventCreateNestedManyWithoutPlayersInput | No |
| user | UserCreateNestedOneWithoutPlayerInput | No |
| invites | InviteCreateNestedManyWithoutPlayersInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| firstName | String | Null | Yes |
| lastName | String | Null | Yes |
| categoryId | String | No |
| position | PlayerPosition | Null | Yes |
| doubles | DoubleUncheckedCreateNestedManyWithoutPlayersInput | No |
| events | EventUncheckedCreateNestedManyWithoutPlayersInput | No |
| user | UserUncheckedCreateNestedOneWithoutPlayerInput | No |
| invites | InviteUncheckedCreateNestedManyWithoutPlayersInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | PlayerWhereUniqueInput | No |
| create | PlayerCreateWithoutMatchesInput | PlayerUncheckedCreateWithoutMatchesInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| level | Int | No |
| type | CatType | No |
| players | PlayerCreateNestedManyWithoutCategoryInput | No |
| doubles | DoubleCreateNestedManyWithoutCategoryInput | No |
| events | EventCreateNestedManyWithoutCategoriesInput | No |
| eventDoubles | EventDoubleCreateNestedManyWithoutCategoryInput | No |
| eventRequests | EventRequestCreateNestedManyWithoutCategoryInput | No |
| categoryGroup | CategoryGroupCreateNestedManyWithoutCategoryInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| level | Int | No |
| type | CatType | No |
| players | PlayerUncheckedCreateNestedManyWithoutCategoryInput | No |
| doubles | DoubleUncheckedCreateNestedManyWithoutCategoryInput | No |
| events | EventUncheckedCreateNestedManyWithoutCategoriesInput | No |
| eventDoubles | EventDoubleUncheckedCreateNestedManyWithoutCategoryInput | No |
| eventRequests | EventRequestUncheckedCreateNestedManyWithoutCategoryInput | No |
| categoryGroup | CategoryGroupUncheckedCreateNestedManyWithoutCategoryInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | CategoryWhereUniqueInput | No |
| create | CategoryCreateWithoutMatchesInput | CategoryUncheckedCreateWithoutMatchesInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| players | PlayerCreateNestedManyWithoutDoublesInput | No |
| matches | MatchCreateNestedManyWithoutDoublesInput | No |
| category | CategoryCreateNestedOneWithoutDoublesInput | No |
| games | GameCreateNestedManyWithoutDoublesInput | No |
| sets | SetCreateNestedManyWithoutDoublesInput | No |
| setsWins | SetCreateNestedManyWithoutWinnerInput | No |
| gamesWins | GameCreateNestedManyWithoutWinnerInput | No |
| eventRequests | EventRequestCreateNestedManyWithoutDoubleInput | No |
| eventDouble | EventDoubleCreateNestedManyWithoutDoubleInput | No |
| invites | InviteCreateNestedManyWithoutDoubleInput | No |
| firstPlaceInGroups | DoublesGroupCreateNestedManyWithoutFirstPlaceInput | No |
| secondPlaceInGroups | DoublesGroupCreateNestedManyWithoutSecondPlaceInput | No |
| firstPlaceInCategory | CategoryGroupCreateNestedManyWithoutFirstPlaceInput | No |
| secondPlaceInCategory | CategoryGroupCreateNestedManyWithoutSecondPlaceInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| categoryId | String | No |
| players | PlayerUncheckedCreateNestedManyWithoutDoublesInput | No |
| matches | MatchUncheckedCreateNestedManyWithoutDoublesInput | No |
| games | GameUncheckedCreateNestedManyWithoutDoublesInput | No |
| sets | SetUncheckedCreateNestedManyWithoutDoublesInput | No |
| setsWins | SetUncheckedCreateNestedManyWithoutWinnerInput | No |
| gamesWins | GameUncheckedCreateNestedManyWithoutWinnerInput | No |
| eventRequests | EventRequestUncheckedCreateNestedManyWithoutDoubleInput | No |
| eventDouble | EventDoubleUncheckedCreateNestedManyWithoutDoubleInput | No |
| invites | InviteUncheckedCreateNestedManyWithoutDoubleInput | No |
| firstPlaceInGroups | DoublesGroupUncheckedCreateNestedManyWithoutFirstPlaceInput | No |
| secondPlaceInGroups | DoublesGroupUncheckedCreateNestedManyWithoutSecondPlaceInput | No |
| firstPlaceInCategory | CategoryGroupUncheckedCreateNestedManyWithoutFirstPlaceInput | No |
| secondPlaceInCategory | CategoryGroupUncheckedCreateNestedManyWithoutSecondPlaceInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | DoubleWhereUniqueInput | No |
| create | DoubleCreateWithoutMatchesWinsInput | DoubleUncheckedCreateWithoutMatchesWinsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| type | SetType | No |
| number | Int | No |
| result | String | Null | Yes |
| isFinished | Boolean | No |
| doubles | DoubleCreateNestedManyWithoutSetsInput | No |
| winner | DoubleCreateNestedOneWithoutSetsWinsInput | No |
| games | GameCreateNestedManyWithoutSetInput | No |
| events | EventCreateNestedManyWithoutSetsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| type | SetType | No |
| number | Int | No |
| setWinnerId | String | Null | Yes |
| result | String | Null | Yes |
| isFinished | Boolean | No |
| doubles | DoubleUncheckedCreateNestedManyWithoutSetsInput | No |
| games | GameUncheckedCreateNestedManyWithoutSetInput | No |
| events | EventUncheckedCreateNestedManyWithoutSetsInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | SetWhereUniqueInput | No |
| create | SetCreateWithoutMatchInput | SetUncheckedCreateWithoutMatchInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | SetCreateManyMatchInput | SetCreateManyMatchInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| players | PlayerCreateNestedManyWithoutDoublesInput | No |
| category | CategoryCreateNestedOneWithoutDoublesInput | No |
| games | GameCreateNestedManyWithoutDoublesInput | No |
| sets | SetCreateNestedManyWithoutDoublesInput | No |
| matchesWins | MatchCreateNestedManyWithoutWinnerInput | No |
| setsWins | SetCreateNestedManyWithoutWinnerInput | No |
| gamesWins | GameCreateNestedManyWithoutWinnerInput | No |
| eventRequests | EventRequestCreateNestedManyWithoutDoubleInput | No |
| eventDouble | EventDoubleCreateNestedManyWithoutDoubleInput | No |
| invites | InviteCreateNestedManyWithoutDoubleInput | No |
| firstPlaceInGroups | DoublesGroupCreateNestedManyWithoutFirstPlaceInput | No |
| secondPlaceInGroups | DoublesGroupCreateNestedManyWithoutSecondPlaceInput | No |
| firstPlaceInCategory | CategoryGroupCreateNestedManyWithoutFirstPlaceInput | No |
| secondPlaceInCategory | CategoryGroupCreateNestedManyWithoutSecondPlaceInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| categoryId | String | No |
| players | PlayerUncheckedCreateNestedManyWithoutDoublesInput | No |
| games | GameUncheckedCreateNestedManyWithoutDoublesInput | No |
| sets | SetUncheckedCreateNestedManyWithoutDoublesInput | No |
| matchesWins | MatchUncheckedCreateNestedManyWithoutWinnerInput | No |
| setsWins | SetUncheckedCreateNestedManyWithoutWinnerInput | No |
| gamesWins | GameUncheckedCreateNestedManyWithoutWinnerInput | No |
| eventRequests | EventRequestUncheckedCreateNestedManyWithoutDoubleInput | No |
| eventDouble | EventDoubleUncheckedCreateNestedManyWithoutDoubleInput | No |
| invites | InviteUncheckedCreateNestedManyWithoutDoubleInput | No |
| firstPlaceInGroups | DoublesGroupUncheckedCreateNestedManyWithoutFirstPlaceInput | No |
| secondPlaceInGroups | DoublesGroupUncheckedCreateNestedManyWithoutSecondPlaceInput | No |
| firstPlaceInCategory | CategoryGroupUncheckedCreateNestedManyWithoutFirstPlaceInput | No |
| secondPlaceInCategory | CategoryGroupUncheckedCreateNestedManyWithoutSecondPlaceInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | DoubleWhereUniqueInput | No |
| create | DoubleCreateWithoutMatchesInput | DoubleUncheckedCreateWithoutMatchesInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| name | String | No |
| isActive | Boolean | No |
| isFinished | Boolean | No |
| startDate | DateTime | Null | Yes |
| finishDate | DateTime | Null | Yes |
| matchDurationInMinutes | Int | Null | Yes |
| timeOfFirstMatch | Int | Null | Yes |
| timeOfLastMatch | Int | Null | Yes |
| eventType | EventType | No |
| matchType | MatchType | No |
| isGroupMatchesFinished | Boolean | No |
| categories | CategoryCreateNestedManyWithoutEventsInput | No |
| players | PlayerCreateNestedManyWithoutEventsInput | No |
| places | PlaceCreateNestedManyWithoutEventsInput | No |
| eventRequests | EventRequestCreateNestedManyWithoutEventInput | No |
| eventDoubles | EventDoubleCreateNestedManyWithoutEventInput | No |
| games | GameCreateNestedManyWithoutEventsInput | No |
| sets | SetCreateNestedManyWithoutEventsInput | No |
| matchDates | MatchDateCreateNestedManyWithoutEventInput | No |
| courts | CourtCreateNestedManyWithoutEventsInput | No |
| invite | InviteCreateNestedOneWithoutEventInput | No |
| categoriesGroups | CategoryGroupCreateNestedManyWithoutEventInput | No |
| eventMatches | EventMatchCreateNestedManyWithoutEventInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | EventWhereUniqueInput | No |
| create | EventCreateWithoutMatchesInput | EventUncheckedCreateWithoutMatchesInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| start | DateTime | No |
| finish | DateTime | No |
| event | EventCreateNestedOneWithoutMatchDatesInput | No |
| court | CourtCreateNestedOneWithoutMatchDatesInput | No |
| atRest | EventDoubleCreateNestedManyWithoutAtRestInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| eventId | String | No |
| start | DateTime | No |
| finish | DateTime | No |
| courtId | String | No |
| atRest | EventDoubleUncheckedCreateNestedManyWithoutAtRestInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | MatchDateWhereUniqueInput | No |
| create | MatchDateCreateWithoutMatchInput | MatchDateUncheckedCreateWithoutMatchInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| name | String | No |
| isAvailable | Boolean | No |
| events | EventCreateNestedManyWithoutCourtsInput | No |
| place | PlaceCreateNestedOneWithoutCourtsInput | No |
| matchDates | MatchDateCreateNestedManyWithoutCourtInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| name | String | No |
| isAvailable | Boolean | No |
| placeId | String | No |
| events | EventUncheckedCreateNestedManyWithoutCourtsInput | No |
| matchDates | MatchDateUncheckedCreateNestedManyWithoutCourtInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | CourtWhereUniqueInput | No |
| create | CourtCreateWithoutMatchesInput | CourtUncheckedCreateWithoutMatchesInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| inviteType | InviteType | No |
| inviterId | String | No |
| invitedId | String | No |
| createdAt | DateTime | No |
| players | PlayerCreateNestedManyWithoutInvitesInput | No |
| double | DoubleCreateNestedOneWithoutInvitesInput | No |
| event | EventCreateNestedOneWithoutInviteInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| inviteType | InviteType | No |
| doublesId | String | Null | Yes |
| eventId | String | Null | Yes |
| inviterId | String | No |
| invitedId | String | No |
| createdAt | DateTime | No |
| players | PlayerUncheckedCreateNestedManyWithoutInvitesInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | InviteWhereUniqueInput | No |
| create | InviteCreateWithoutMatchInput | InviteUncheckedCreateWithoutMatchInput | No |
| Name | Type | Nullable |
|---|---|---|
| number | Int | No |
| type | EventMatchType | No |
| event | EventCreateNestedOneWithoutEventMatchesInput | No |
| categoryGroup | CategoryGroupCreateNestedOneWithoutFinalMatchesInput | No |
| doublesGroup | DoublesGroupCreateNestedOneWithoutGroupMatchesInput | No |
| Name | Type | Nullable |
|---|---|---|
| number | Int | No |
| type | EventMatchType | No |
| eventId | String | No |
| categoryGroupId | String | Null | Yes |
| doublesGroupId | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| where | EventMatchWhereUniqueInput | No |
| create | EventMatchCreateWithoutMatchInput | EventMatchUncheckedCreateWithoutMatchInput | No |
| Name | Type | Nullable |
|---|---|---|
| isUpdated | Boolean | No |
| matchB | MatchCreateNestedOneWithoutMatchRefBInput | No |
| refMatch | MatchCreateNestedOneWithoutMatchRefInput | No |
| categoryGroup | CategoryGroupCreateNestedOneWithoutMatchesWithReferenceInput | No |
| Name | Type | Nullable |
|---|---|---|
| matchBId | String | Null | Yes |
| refMatchId | String | Null | Yes |
| categoryGroupId | String | Null | Yes |
| isUpdated | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| where | MatchesReferencedWhereUniqueInput | No |
| create | MatchesReferencedCreateWithoutMatchAInput | MatchesReferencedUncheckedCreateWithoutMatchAInput | No |
| Name | Type | Nullable |
|---|---|---|
| isUpdated | Boolean | No |
| matchA | MatchCreateNestedOneWithoutMatchRefAInput | No |
| refMatch | MatchCreateNestedOneWithoutMatchRefInput | No |
| categoryGroup | CategoryGroupCreateNestedOneWithoutMatchesWithReferenceInput | No |
| Name | Type | Nullable |
|---|---|---|
| matchAId | String | No |
| refMatchId | String | Null | Yes |
| categoryGroupId | String | Null | Yes |
| isUpdated | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| where | MatchesReferencedWhereUniqueInput | No |
| create | MatchesReferencedCreateWithoutMatchBInput | MatchesReferencedUncheckedCreateWithoutMatchBInput | No |
| Name | Type | Nullable |
|---|---|---|
| isUpdated | Boolean | No |
| matchA | MatchCreateNestedOneWithoutMatchRefAInput | No |
| matchB | MatchCreateNestedOneWithoutMatchRefBInput | No |
| categoryGroup | CategoryGroupCreateNestedOneWithoutMatchesWithReferenceInput | No |
| Name | Type | Nullable |
|---|---|---|
| matchAId | String | No |
| matchBId | String | Null | Yes |
| categoryGroupId | String | Null | Yes |
| isUpdated | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| where | MatchesReferencedWhereUniqueInput | No |
| create | MatchesReferencedCreateWithoutRefMatchInput | MatchesReferencedUncheckedCreateWithoutRefMatchInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | PlayerWhereUniqueInput | No |
| update | PlayerUpdateWithoutMatchesInput | PlayerUncheckedUpdateWithoutMatchesInput | No |
| create | PlayerCreateWithoutMatchesInput | PlayerUncheckedCreateWithoutMatchesInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | PlayerWhereUniqueInput | No |
| data | PlayerUpdateWithoutMatchesInput | PlayerUncheckedUpdateWithoutMatchesInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | PlayerScalarWhereInput | No |
| data | PlayerUpdateManyMutationInput | PlayerUncheckedUpdateManyWithoutMatchesInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | CategoryUpdateWithoutMatchesInput | CategoryUncheckedUpdateWithoutMatchesInput | No |
| create | CategoryCreateWithoutMatchesInput | CategoryUncheckedCreateWithoutMatchesInput | No |
| where | CategoryWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | CategoryWhereInput | No |
| data | CategoryUpdateWithoutMatchesInput | CategoryUncheckedUpdateWithoutMatchesInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| level | Int | IntFieldUpdateOperationsInput | No |
| type | CatType | EnumCatTypeFieldUpdateOperationsInput | No |
| players | PlayerUpdateManyWithoutCategoryNestedInput | No |
| doubles | DoubleUpdateManyWithoutCategoryNestedInput | No |
| events | EventUpdateManyWithoutCategoriesNestedInput | No |
| eventDoubles | EventDoubleUpdateManyWithoutCategoryNestedInput | No |
| eventRequests | EventRequestUpdateManyWithoutCategoryNestedInput | No |
| categoryGroup | CategoryGroupUpdateManyWithoutCategoryNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| level | Int | IntFieldUpdateOperationsInput | No |
| type | CatType | EnumCatTypeFieldUpdateOperationsInput | No |
| players | PlayerUncheckedUpdateManyWithoutCategoryNestedInput | No |
| doubles | DoubleUncheckedUpdateManyWithoutCategoryNestedInput | No |
| events | EventUncheckedUpdateManyWithoutCategoriesNestedInput | No |
| eventDoubles | EventDoubleUncheckedUpdateManyWithoutCategoryNestedInput | No |
| eventRequests | EventRequestUncheckedUpdateManyWithoutCategoryNestedInput | No |
| categoryGroup | CategoryGroupUncheckedUpdateManyWithoutCategoryNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | DoubleUpdateWithoutMatchesWinsInput | DoubleUncheckedUpdateWithoutMatchesWinsInput | No |
| create | DoubleCreateWithoutMatchesWinsInput | DoubleUncheckedCreateWithoutMatchesWinsInput | No |
| where | DoubleWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | DoubleWhereInput | No |
| data | DoubleUpdateWithoutMatchesWinsInput | DoubleUncheckedUpdateWithoutMatchesWinsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| players | PlayerUpdateManyWithoutDoublesNestedInput | No |
| matches | MatchUpdateManyWithoutDoublesNestedInput | No |
| category | CategoryUpdateOneRequiredWithoutDoublesNestedInput | No |
| games | GameUpdateManyWithoutDoublesNestedInput | No |
| sets | SetUpdateManyWithoutDoublesNestedInput | No |
| setsWins | SetUpdateManyWithoutWinnerNestedInput | No |
| gamesWins | GameUpdateManyWithoutWinnerNestedInput | No |
| eventRequests | EventRequestUpdateManyWithoutDoubleNestedInput | No |
| eventDouble | EventDoubleUpdateManyWithoutDoubleNestedInput | No |
| invites | InviteUpdateManyWithoutDoubleNestedInput | No |
| firstPlaceInGroups | DoublesGroupUpdateManyWithoutFirstPlaceNestedInput | No |
| secondPlaceInGroups | DoublesGroupUpdateManyWithoutSecondPlaceNestedInput | No |
| firstPlaceInCategory | CategoryGroupUpdateManyWithoutFirstPlaceNestedInput | No |
| secondPlaceInCategory | CategoryGroupUpdateManyWithoutSecondPlaceNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | SetWhereUniqueInput | No |
| update | SetUpdateWithoutMatchInput | SetUncheckedUpdateWithoutMatchInput | No |
| create | SetCreateWithoutMatchInput | SetUncheckedCreateWithoutMatchInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | SetWhereUniqueInput | No |
| data | SetUpdateWithoutMatchInput | SetUncheckedUpdateWithoutMatchInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | SetScalarWhereInput | No |
| data | SetUpdateManyMutationInput | SetUncheckedUpdateManyWithoutMatchInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | DoubleWhereUniqueInput | No |
| update | DoubleUpdateWithoutMatchesInput | DoubleUncheckedUpdateWithoutMatchesInput | No |
| create | DoubleCreateWithoutMatchesInput | DoubleUncheckedCreateWithoutMatchesInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | DoubleWhereUniqueInput | No |
| data | DoubleUpdateWithoutMatchesInput | DoubleUncheckedUpdateWithoutMatchesInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | DoubleScalarWhereInput | No |
| data | DoubleUpdateManyMutationInput | DoubleUncheckedUpdateManyWithoutMatchesInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | EventUpdateWithoutMatchesInput | EventUncheckedUpdateWithoutMatchesInput | No |
| create | EventCreateWithoutMatchesInput | EventUncheckedCreateWithoutMatchesInput | No |
| where | EventWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | EventWhereInput | No |
| data | EventUpdateWithoutMatchesInput | EventUncheckedUpdateWithoutMatchesInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | MatchDateUpdateWithoutMatchInput | MatchDateUncheckedUpdateWithoutMatchInput | No |
| create | MatchDateCreateWithoutMatchInput | MatchDateUncheckedCreateWithoutMatchInput | No |
| where | MatchDateWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | MatchDateWhereInput | No |
| data | MatchDateUpdateWithoutMatchInput | MatchDateUncheckedUpdateWithoutMatchInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| start | DateTime | DateTimeFieldUpdateOperationsInput | No |
| finish | DateTime | DateTimeFieldUpdateOperationsInput | No |
| event | EventUpdateOneRequiredWithoutMatchDatesNestedInput | No |
| court | CourtUpdateOneRequiredWithoutMatchDatesNestedInput | No |
| atRest | EventDoubleUpdateManyWithoutAtRestNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| eventId | String | StringFieldUpdateOperationsInput | No |
| start | DateTime | DateTimeFieldUpdateOperationsInput | No |
| finish | DateTime | DateTimeFieldUpdateOperationsInput | No |
| courtId | String | StringFieldUpdateOperationsInput | No |
| atRest | EventDoubleUncheckedUpdateManyWithoutAtRestNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | CourtUpdateWithoutMatchesInput | CourtUncheckedUpdateWithoutMatchesInput | No |
| create | CourtCreateWithoutMatchesInput | CourtUncheckedCreateWithoutMatchesInput | No |
| where | CourtWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | CourtWhereInput | No |
| data | CourtUpdateWithoutMatchesInput | CourtUncheckedUpdateWithoutMatchesInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| isAvailable | Boolean | BoolFieldUpdateOperationsInput | No |
| events | EventUpdateManyWithoutCourtsNestedInput | No |
| place | PlaceUpdateOneRequiredWithoutCourtsNestedInput | No |
| matchDates | MatchDateUpdateManyWithoutCourtNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| isAvailable | Boolean | BoolFieldUpdateOperationsInput | No |
| placeId | String | StringFieldUpdateOperationsInput | No |
| events | EventUncheckedUpdateManyWithoutCourtsNestedInput | No |
| matchDates | MatchDateUncheckedUpdateManyWithoutCourtNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | InviteUpdateWithoutMatchInput | InviteUncheckedUpdateWithoutMatchInput | No |
| create | InviteCreateWithoutMatchInput | InviteUncheckedCreateWithoutMatchInput | No |
| where | InviteWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | InviteWhereInput | No |
| data | InviteUpdateWithoutMatchInput | InviteUncheckedUpdateWithoutMatchInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| inviteType | InviteType | EnumInviteTypeFieldUpdateOperationsInput | No |
| inviterId | String | StringFieldUpdateOperationsInput | No |
| invitedId | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| players | PlayerUpdateManyWithoutInvitesNestedInput | No |
| double | DoubleUpdateOneWithoutInvitesNestedInput | No |
| event | EventUpdateOneWithoutInviteNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| inviteType | InviteType | EnumInviteTypeFieldUpdateOperationsInput | No |
| doublesId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| eventId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| inviterId | String | StringFieldUpdateOperationsInput | No |
| invitedId | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| players | PlayerUncheckedUpdateManyWithoutInvitesNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | EventMatchUpdateWithoutMatchInput | EventMatchUncheckedUpdateWithoutMatchInput | No |
| create | EventMatchCreateWithoutMatchInput | EventMatchUncheckedCreateWithoutMatchInput | No |
| where | EventMatchWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | EventMatchWhereInput | No |
| data | EventMatchUpdateWithoutMatchInput | EventMatchUncheckedUpdateWithoutMatchInput | No |
| Name | Type | Nullable |
|---|---|---|
| number | Int | IntFieldUpdateOperationsInput | No |
| type | EventMatchType | EnumEventMatchTypeFieldUpdateOperationsInput | No |
| event | EventUpdateOneRequiredWithoutEventMatchesNestedInput | No |
| categoryGroup | CategoryGroupUpdateOneWithoutFinalMatchesNestedInput | No |
| doublesGroup | DoublesGroupUpdateOneWithoutGroupMatchesNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| number | Int | IntFieldUpdateOperationsInput | No |
| type | EventMatchType | EnumEventMatchTypeFieldUpdateOperationsInput | No |
| eventId | String | StringFieldUpdateOperationsInput | No |
| categoryGroupId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| doublesGroupId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| update | MatchesReferencedUpdateWithoutMatchAInput | MatchesReferencedUncheckedUpdateWithoutMatchAInput | No |
| create | MatchesReferencedCreateWithoutMatchAInput | MatchesReferencedUncheckedCreateWithoutMatchAInput | No |
| where | MatchesReferencedWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | MatchesReferencedWhereInput | No |
| data | MatchesReferencedUpdateWithoutMatchAInput | MatchesReferencedUncheckedUpdateWithoutMatchAInput | No |
| Name | Type | Nullable |
|---|---|---|
| isUpdated | Boolean | BoolFieldUpdateOperationsInput | No |
| matchB | MatchUpdateOneWithoutMatchRefBNestedInput | No |
| refMatch | MatchUpdateOneWithoutMatchRefNestedInput | No |
| categoryGroup | CategoryGroupUpdateOneWithoutMatchesWithReferenceNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| matchBId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| refMatchId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| categoryGroupId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| isUpdated | Boolean | BoolFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | MatchesReferencedUpdateWithoutMatchBInput | MatchesReferencedUncheckedUpdateWithoutMatchBInput | No |
| create | MatchesReferencedCreateWithoutMatchBInput | MatchesReferencedUncheckedCreateWithoutMatchBInput | No |
| where | MatchesReferencedWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | MatchesReferencedWhereInput | No |
| data | MatchesReferencedUpdateWithoutMatchBInput | MatchesReferencedUncheckedUpdateWithoutMatchBInput | No |
| Name | Type | Nullable |
|---|---|---|
| isUpdated | Boolean | BoolFieldUpdateOperationsInput | No |
| matchA | MatchUpdateOneWithoutMatchRefANestedInput | No |
| refMatch | MatchUpdateOneWithoutMatchRefNestedInput | No |
| categoryGroup | CategoryGroupUpdateOneWithoutMatchesWithReferenceNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| matchAId | String | StringFieldUpdateOperationsInput | No |
| refMatchId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| categoryGroupId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| isUpdated | Boolean | BoolFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | MatchesReferencedUpdateWithoutRefMatchInput | MatchesReferencedUncheckedUpdateWithoutRefMatchInput | No |
| create | MatchesReferencedCreateWithoutRefMatchInput | MatchesReferencedUncheckedCreateWithoutRefMatchInput | No |
| where | MatchesReferencedWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | MatchesReferencedWhereInput | No |
| data | MatchesReferencedUpdateWithoutRefMatchInput | MatchesReferencedUncheckedUpdateWithoutRefMatchInput | No |
| Name | Type | Nullable |
|---|---|---|
| isUpdated | Boolean | BoolFieldUpdateOperationsInput | No |
| matchA | MatchUpdateOneWithoutMatchRefANestedInput | No |
| matchB | MatchUpdateOneWithoutMatchRefBNestedInput | No |
| categoryGroup | CategoryGroupUpdateOneWithoutMatchesWithReferenceNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| matchAId | String | StringFieldUpdateOperationsInput | No |
| matchBId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| categoryGroupId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| isUpdated | Boolean | BoolFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| name | String | No |
| isActive | Boolean | No |
| isFinished | Boolean | No |
| startDate | DateTime | Null | Yes |
| finishDate | DateTime | Null | Yes |
| matchDurationInMinutes | Int | Null | Yes |
| timeOfFirstMatch | Int | Null | Yes |
| timeOfLastMatch | Int | Null | Yes |
| eventType | EventType | No |
| matchType | MatchType | No |
| isGroupMatchesFinished | Boolean | No |
| categories | CategoryCreateNestedManyWithoutEventsInput | No |
| players | PlayerCreateNestedManyWithoutEventsInput | No |
| matches | MatchCreateNestedManyWithoutEventInput | No |
| places | PlaceCreateNestedManyWithoutEventsInput | No |
| eventRequests | EventRequestCreateNestedManyWithoutEventInput | No |
| eventDoubles | EventDoubleCreateNestedManyWithoutEventInput | No |
| games | GameCreateNestedManyWithoutEventsInput | No |
| sets | SetCreateNestedManyWithoutEventsInput | No |
| courts | CourtCreateNestedManyWithoutEventsInput | No |
| invite | InviteCreateNestedOneWithoutEventInput | No |
| categoriesGroups | CategoryGroupCreateNestedManyWithoutEventInput | No |
| eventMatches | EventMatchCreateNestedManyWithoutEventInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | EventWhereUniqueInput | No |
| create | EventCreateWithoutMatchDatesInput | EventUncheckedCreateWithoutMatchDatesInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| isFinished | Boolean | No |
| type | MatchType | No |
| players | PlayerCreateNestedManyWithoutMatchesInput | No |
| category | CategoryCreateNestedOneWithoutMatchesInput | No |
| winner | DoubleCreateNestedOneWithoutMatchesWinsInput | No |
| sets | SetCreateNestedManyWithoutMatchInput | No |
| doubles | DoubleCreateNestedManyWithoutMatchesInput | No |
| event | EventCreateNestedOneWithoutMatchesInput | No |
| court | CourtCreateNestedOneWithoutMatchesInput | No |
| invite | InviteCreateNestedOneWithoutMatchInput | No |
| eventMatch | EventMatchCreateNestedOneWithoutMatchInput | No |
| matchRefA | MatchesReferencedCreateNestedOneWithoutMatchAInput | No |
| matchRefB | MatchesReferencedCreateNestedOneWithoutMatchBInput | No |
| matchRef | MatchesReferencedCreateNestedOneWithoutRefMatchInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| isFinished | Boolean | No |
| categoryId | String | Null | Yes |
| winnerDoublesId | String | Null | Yes |
| eventId | String | Null | Yes |
| type | MatchType | No |
| courtId | String | Null | Yes |
| players | PlayerUncheckedCreateNestedManyWithoutMatchesInput | No |
| sets | SetUncheckedCreateNestedManyWithoutMatchInput | No |
| doubles | DoubleUncheckedCreateNestedManyWithoutMatchesInput | No |
| invite | InviteUncheckedCreateNestedOneWithoutMatchInput | No |
| eventMatch | EventMatchUncheckedCreateNestedOneWithoutMatchInput | No |
| matchRefA | MatchesReferencedUncheckedCreateNestedOneWithoutMatchAInput | No |
| matchRefB | MatchesReferencedUncheckedCreateNestedOneWithoutMatchBInput | No |
| matchRef | MatchesReferencedUncheckedCreateNestedOneWithoutRefMatchInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | MatchWhereUniqueInput | No |
| create | MatchCreateWithoutMatchDateInput | MatchUncheckedCreateWithoutMatchDateInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| name | String | No |
| isAvailable | Boolean | No |
| events | EventCreateNestedManyWithoutCourtsInput | No |
| matches | MatchCreateNestedManyWithoutCourtInput | No |
| place | PlaceCreateNestedOneWithoutCourtsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| name | String | No |
| isAvailable | Boolean | No |
| placeId | String | No |
| events | EventUncheckedCreateNestedManyWithoutCourtsInput | No |
| matches | MatchUncheckedCreateNestedManyWithoutCourtInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | CourtWhereUniqueInput | No |
| create | CourtCreateWithoutMatchDatesInput | CourtUncheckedCreateWithoutMatchDatesInput | No |
| Name | Type | Nullable |
|---|---|---|
| event | EventCreateNestedOneWithoutEventDoublesInput | No |
| double | DoubleCreateNestedOneWithoutEventDoubleInput | No |
| category | CategoryCreateNestedOneWithoutEventDoublesInput | No |
| DoublesGroup | DoublesGroupCreateNestedOneWithoutEventDoublesInput | No |
| Name | Type | Nullable |
|---|---|---|
| eventId | String | No |
| doubleId | String | No |
| categoryId | String | No |
| doublesGroupId | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| where | EventDoubleWhereUniqueInput | No |
| create | EventDoubleCreateWithoutAtRestInput | EventDoubleUncheckedCreateWithoutAtRestInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | EventDoubleCreateManyAtRestInput | EventDoubleCreateManyAtRestInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| update | EventUpdateWithoutMatchDatesInput | EventUncheckedUpdateWithoutMatchDatesInput | No |
| create | EventCreateWithoutMatchDatesInput | EventUncheckedCreateWithoutMatchDatesInput | No |
| where | EventWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | EventWhereInput | No |
| data | EventUpdateWithoutMatchDatesInput | EventUncheckedUpdateWithoutMatchDatesInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | MatchUpdateWithoutMatchDateInput | MatchUncheckedUpdateWithoutMatchDateInput | No |
| create | MatchCreateWithoutMatchDateInput | MatchUncheckedCreateWithoutMatchDateInput | No |
| where | MatchWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | MatchWhereInput | No |
| data | MatchUpdateWithoutMatchDateInput | MatchUncheckedUpdateWithoutMatchDateInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| isFinished | Boolean | BoolFieldUpdateOperationsInput | No |
| type | MatchType | EnumMatchTypeFieldUpdateOperationsInput | No |
| players | PlayerUpdateManyWithoutMatchesNestedInput | No |
| category | CategoryUpdateOneWithoutMatchesNestedInput | No |
| winner | DoubleUpdateOneWithoutMatchesWinsNestedInput | No |
| sets | SetUpdateManyWithoutMatchNestedInput | No |
| doubles | DoubleUpdateManyWithoutMatchesNestedInput | No |
| event | EventUpdateOneWithoutMatchesNestedInput | No |
| court | CourtUpdateOneWithoutMatchesNestedInput | No |
| invite | InviteUpdateOneWithoutMatchNestedInput | No |
| eventMatch | EventMatchUpdateOneWithoutMatchNestedInput | No |
| matchRefA | MatchesReferencedUpdateOneWithoutMatchANestedInput | No |
| matchRefB | MatchesReferencedUpdateOneWithoutMatchBNestedInput | No |
| matchRef | MatchesReferencedUpdateOneWithoutRefMatchNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| isFinished | Boolean | BoolFieldUpdateOperationsInput | No |
| categoryId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| winnerDoublesId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| eventId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| type | MatchType | EnumMatchTypeFieldUpdateOperationsInput | No |
| courtId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| players | PlayerUncheckedUpdateManyWithoutMatchesNestedInput | No |
| sets | SetUncheckedUpdateManyWithoutMatchNestedInput | No |
| doubles | DoubleUncheckedUpdateManyWithoutMatchesNestedInput | No |
| invite | InviteUncheckedUpdateOneWithoutMatchNestedInput | No |
| eventMatch | EventMatchUncheckedUpdateOneWithoutMatchNestedInput | No |
| matchRefA | MatchesReferencedUncheckedUpdateOneWithoutMatchANestedInput | No |
| matchRefB | MatchesReferencedUncheckedUpdateOneWithoutMatchBNestedInput | No |
| matchRef | MatchesReferencedUncheckedUpdateOneWithoutRefMatchNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | CourtUpdateWithoutMatchDatesInput | CourtUncheckedUpdateWithoutMatchDatesInput | No |
| create | CourtCreateWithoutMatchDatesInput | CourtUncheckedCreateWithoutMatchDatesInput | No |
| where | CourtWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | CourtWhereInput | No |
| data | CourtUpdateWithoutMatchDatesInput | CourtUncheckedUpdateWithoutMatchDatesInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| isAvailable | Boolean | BoolFieldUpdateOperationsInput | No |
| events | EventUpdateManyWithoutCourtsNestedInput | No |
| matches | MatchUpdateManyWithoutCourtNestedInput | No |
| place | PlaceUpdateOneRequiredWithoutCourtsNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| isAvailable | Boolean | BoolFieldUpdateOperationsInput | No |
| placeId | String | StringFieldUpdateOperationsInput | No |
| events | EventUncheckedUpdateManyWithoutCourtsNestedInput | No |
| matches | MatchUncheckedUpdateManyWithoutCourtNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | EventDoubleWhereUniqueInput | No |
| update | EventDoubleUpdateWithoutAtRestInput | EventDoubleUncheckedUpdateWithoutAtRestInput | No |
| create | EventDoubleCreateWithoutAtRestInput | EventDoubleUncheckedCreateWithoutAtRestInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | EventDoubleWhereUniqueInput | No |
| data | EventDoubleUpdateWithoutAtRestInput | EventDoubleUncheckedUpdateWithoutAtRestInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | EventDoubleScalarWhereInput | No |
| data | EventDoubleUpdateManyMutationInput | EventDoubleUncheckedUpdateManyWithoutAtRestInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| players | PlayerCreateNestedManyWithoutDoublesInput | No |
| matches | MatchCreateNestedManyWithoutDoublesInput | No |
| category | CategoryCreateNestedOneWithoutDoublesInput | No |
| games | GameCreateNestedManyWithoutDoublesInput | No |
| matchesWins | MatchCreateNestedManyWithoutWinnerInput | No |
| setsWins | SetCreateNestedManyWithoutWinnerInput | No |
| gamesWins | GameCreateNestedManyWithoutWinnerInput | No |
| eventRequests | EventRequestCreateNestedManyWithoutDoubleInput | No |
| eventDouble | EventDoubleCreateNestedManyWithoutDoubleInput | No |
| invites | InviteCreateNestedManyWithoutDoubleInput | No |
| firstPlaceInGroups | DoublesGroupCreateNestedManyWithoutFirstPlaceInput | No |
| secondPlaceInGroups | DoublesGroupCreateNestedManyWithoutSecondPlaceInput | No |
| firstPlaceInCategory | CategoryGroupCreateNestedManyWithoutFirstPlaceInput | No |
| secondPlaceInCategory | CategoryGroupCreateNestedManyWithoutSecondPlaceInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| categoryId | String | No |
| players | PlayerUncheckedCreateNestedManyWithoutDoublesInput | No |
| matches | MatchUncheckedCreateNestedManyWithoutDoublesInput | No |
| games | GameUncheckedCreateNestedManyWithoutDoublesInput | No |
| matchesWins | MatchUncheckedCreateNestedManyWithoutWinnerInput | No |
| setsWins | SetUncheckedCreateNestedManyWithoutWinnerInput | No |
| gamesWins | GameUncheckedCreateNestedManyWithoutWinnerInput | No |
| eventRequests | EventRequestUncheckedCreateNestedManyWithoutDoubleInput | No |
| eventDouble | EventDoubleUncheckedCreateNestedManyWithoutDoubleInput | No |
| invites | InviteUncheckedCreateNestedManyWithoutDoubleInput | No |
| firstPlaceInGroups | DoublesGroupUncheckedCreateNestedManyWithoutFirstPlaceInput | No |
| secondPlaceInGroups | DoublesGroupUncheckedCreateNestedManyWithoutSecondPlaceInput | No |
| firstPlaceInCategory | CategoryGroupUncheckedCreateNestedManyWithoutFirstPlaceInput | No |
| secondPlaceInCategory | CategoryGroupUncheckedCreateNestedManyWithoutSecondPlaceInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | DoubleWhereUniqueInput | No |
| create | DoubleCreateWithoutSetsInput | DoubleUncheckedCreateWithoutSetsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| players | PlayerCreateNestedManyWithoutDoublesInput | No |
| matches | MatchCreateNestedManyWithoutDoublesInput | No |
| category | CategoryCreateNestedOneWithoutDoublesInput | No |
| games | GameCreateNestedManyWithoutDoublesInput | No |
| sets | SetCreateNestedManyWithoutDoublesInput | No |
| matchesWins | MatchCreateNestedManyWithoutWinnerInput | No |
| gamesWins | GameCreateNestedManyWithoutWinnerInput | No |
| eventRequests | EventRequestCreateNestedManyWithoutDoubleInput | No |
| eventDouble | EventDoubleCreateNestedManyWithoutDoubleInput | No |
| invites | InviteCreateNestedManyWithoutDoubleInput | No |
| firstPlaceInGroups | DoublesGroupCreateNestedManyWithoutFirstPlaceInput | No |
| secondPlaceInGroups | DoublesGroupCreateNestedManyWithoutSecondPlaceInput | No |
| firstPlaceInCategory | CategoryGroupCreateNestedManyWithoutFirstPlaceInput | No |
| secondPlaceInCategory | CategoryGroupCreateNestedManyWithoutSecondPlaceInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| categoryId | String | No |
| players | PlayerUncheckedCreateNestedManyWithoutDoublesInput | No |
| matches | MatchUncheckedCreateNestedManyWithoutDoublesInput | No |
| games | GameUncheckedCreateNestedManyWithoutDoublesInput | No |
| sets | SetUncheckedCreateNestedManyWithoutDoublesInput | No |
| matchesWins | MatchUncheckedCreateNestedManyWithoutWinnerInput | No |
| gamesWins | GameUncheckedCreateNestedManyWithoutWinnerInput | No |
| eventRequests | EventRequestUncheckedCreateNestedManyWithoutDoubleInput | No |
| eventDouble | EventDoubleUncheckedCreateNestedManyWithoutDoubleInput | No |
| invites | InviteUncheckedCreateNestedManyWithoutDoubleInput | No |
| firstPlaceInGroups | DoublesGroupUncheckedCreateNestedManyWithoutFirstPlaceInput | No |
| secondPlaceInGroups | DoublesGroupUncheckedCreateNestedManyWithoutSecondPlaceInput | No |
| firstPlaceInCategory | CategoryGroupUncheckedCreateNestedManyWithoutFirstPlaceInput | No |
| secondPlaceInCategory | CategoryGroupUncheckedCreateNestedManyWithoutSecondPlaceInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | DoubleWhereUniqueInput | No |
| create | DoubleCreateWithoutSetsWinsInput | DoubleUncheckedCreateWithoutSetsWinsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| isFinished | Boolean | No |
| type | MatchType | No |
| players | PlayerCreateNestedManyWithoutMatchesInput | No |
| category | CategoryCreateNestedOneWithoutMatchesInput | No |
| winner | DoubleCreateNestedOneWithoutMatchesWinsInput | No |
| doubles | DoubleCreateNestedManyWithoutMatchesInput | No |
| event | EventCreateNestedOneWithoutMatchesInput | No |
| matchDate | MatchDateCreateNestedOneWithoutMatchInput | No |
| court | CourtCreateNestedOneWithoutMatchesInput | No |
| invite | InviteCreateNestedOneWithoutMatchInput | No |
| eventMatch | EventMatchCreateNestedOneWithoutMatchInput | No |
| matchRefA | MatchesReferencedCreateNestedOneWithoutMatchAInput | No |
| matchRefB | MatchesReferencedCreateNestedOneWithoutMatchBInput | No |
| matchRef | MatchesReferencedCreateNestedOneWithoutRefMatchInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| isFinished | Boolean | No |
| categoryId | String | Null | Yes |
| winnerDoublesId | String | Null | Yes |
| eventId | String | Null | Yes |
| type | MatchType | No |
| courtId | String | Null | Yes |
| players | PlayerUncheckedCreateNestedManyWithoutMatchesInput | No |
| doubles | DoubleUncheckedCreateNestedManyWithoutMatchesInput | No |
| matchDate | MatchDateUncheckedCreateNestedOneWithoutMatchInput | No |
| invite | InviteUncheckedCreateNestedOneWithoutMatchInput | No |
| eventMatch | EventMatchUncheckedCreateNestedOneWithoutMatchInput | No |
| matchRefA | MatchesReferencedUncheckedCreateNestedOneWithoutMatchAInput | No |
| matchRefB | MatchesReferencedUncheckedCreateNestedOneWithoutMatchBInput | No |
| matchRef | MatchesReferencedUncheckedCreateNestedOneWithoutRefMatchInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | MatchWhereUniqueInput | No |
| create | MatchCreateWithoutSetsInput | MatchUncheckedCreateWithoutSetsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| doubles | DoubleCreateNestedManyWithoutGamesInput | No |
| winner | DoubleCreateNestedOneWithoutGamesWinsInput | No |
| events | EventCreateNestedManyWithoutGamesInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| winnerId | String | Null | Yes |
| doubles | DoubleUncheckedCreateNestedManyWithoutGamesInput | No |
| events | EventUncheckedCreateNestedManyWithoutGamesInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | GameWhereUniqueInput | No |
| create | GameCreateWithoutSetInput | GameUncheckedCreateWithoutSetInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | GameCreateManySetInput | GameCreateManySetInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| name | String | No |
| isActive | Boolean | No |
| isFinished | Boolean | No |
| startDate | DateTime | Null | Yes |
| finishDate | DateTime | Null | Yes |
| matchDurationInMinutes | Int | Null | Yes |
| timeOfFirstMatch | Int | Null | Yes |
| timeOfLastMatch | Int | Null | Yes |
| eventType | EventType | No |
| matchType | MatchType | No |
| isGroupMatchesFinished | Boolean | No |
| categories | CategoryCreateNestedManyWithoutEventsInput | No |
| players | PlayerCreateNestedManyWithoutEventsInput | No |
| matches | MatchCreateNestedManyWithoutEventInput | No |
| places | PlaceCreateNestedManyWithoutEventsInput | No |
| eventRequests | EventRequestCreateNestedManyWithoutEventInput | No |
| eventDoubles | EventDoubleCreateNestedManyWithoutEventInput | No |
| games | GameCreateNestedManyWithoutEventsInput | No |
| matchDates | MatchDateCreateNestedManyWithoutEventInput | No |
| courts | CourtCreateNestedManyWithoutEventsInput | No |
| invite | InviteCreateNestedOneWithoutEventInput | No |
| categoriesGroups | CategoryGroupCreateNestedManyWithoutEventInput | No |
| eventMatches | EventMatchCreateNestedManyWithoutEventInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | EventWhereUniqueInput | No |
| create | EventCreateWithoutSetsInput | EventUncheckedCreateWithoutSetsInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | DoubleWhereUniqueInput | No |
| update | DoubleUpdateWithoutSetsInput | DoubleUncheckedUpdateWithoutSetsInput | No |
| create | DoubleCreateWithoutSetsInput | DoubleUncheckedCreateWithoutSetsInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | DoubleWhereUniqueInput | No |
| data | DoubleUpdateWithoutSetsInput | DoubleUncheckedUpdateWithoutSetsInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | DoubleScalarWhereInput | No |
| data | DoubleUpdateManyMutationInput | DoubleUncheckedUpdateManyWithoutSetsInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | DoubleUpdateWithoutSetsWinsInput | DoubleUncheckedUpdateWithoutSetsWinsInput | No |
| create | DoubleCreateWithoutSetsWinsInput | DoubleUncheckedCreateWithoutSetsWinsInput | No |
| where | DoubleWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | DoubleWhereInput | No |
| data | DoubleUpdateWithoutSetsWinsInput | DoubleUncheckedUpdateWithoutSetsWinsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| players | PlayerUpdateManyWithoutDoublesNestedInput | No |
| matches | MatchUpdateManyWithoutDoublesNestedInput | No |
| category | CategoryUpdateOneRequiredWithoutDoublesNestedInput | No |
| games | GameUpdateManyWithoutDoublesNestedInput | No |
| sets | SetUpdateManyWithoutDoublesNestedInput | No |
| matchesWins | MatchUpdateManyWithoutWinnerNestedInput | No |
| gamesWins | GameUpdateManyWithoutWinnerNestedInput | No |
| eventRequests | EventRequestUpdateManyWithoutDoubleNestedInput | No |
| eventDouble | EventDoubleUpdateManyWithoutDoubleNestedInput | No |
| invites | InviteUpdateManyWithoutDoubleNestedInput | No |
| firstPlaceInGroups | DoublesGroupUpdateManyWithoutFirstPlaceNestedInput | No |
| secondPlaceInGroups | DoublesGroupUpdateManyWithoutSecondPlaceNestedInput | No |
| firstPlaceInCategory | CategoryGroupUpdateManyWithoutFirstPlaceNestedInput | No |
| secondPlaceInCategory | CategoryGroupUpdateManyWithoutSecondPlaceNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | MatchUpdateWithoutSetsInput | MatchUncheckedUpdateWithoutSetsInput | No |
| create | MatchCreateWithoutSetsInput | MatchUncheckedCreateWithoutSetsInput | No |
| where | MatchWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | MatchWhereInput | No |
| data | MatchUpdateWithoutSetsInput | MatchUncheckedUpdateWithoutSetsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| isFinished | Boolean | BoolFieldUpdateOperationsInput | No |
| type | MatchType | EnumMatchTypeFieldUpdateOperationsInput | No |
| players | PlayerUpdateManyWithoutMatchesNestedInput | No |
| category | CategoryUpdateOneWithoutMatchesNestedInput | No |
| winner | DoubleUpdateOneWithoutMatchesWinsNestedInput | No |
| doubles | DoubleUpdateManyWithoutMatchesNestedInput | No |
| event | EventUpdateOneWithoutMatchesNestedInput | No |
| matchDate | MatchDateUpdateOneWithoutMatchNestedInput | No |
| court | CourtUpdateOneWithoutMatchesNestedInput | No |
| invite | InviteUpdateOneWithoutMatchNestedInput | No |
| eventMatch | EventMatchUpdateOneWithoutMatchNestedInput | No |
| matchRefA | MatchesReferencedUpdateOneWithoutMatchANestedInput | No |
| matchRefB | MatchesReferencedUpdateOneWithoutMatchBNestedInput | No |
| matchRef | MatchesReferencedUpdateOneWithoutRefMatchNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | GameWhereUniqueInput | No |
| update | GameUpdateWithoutSetInput | GameUncheckedUpdateWithoutSetInput | No |
| create | GameCreateWithoutSetInput | GameUncheckedCreateWithoutSetInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | GameWhereUniqueInput | No |
| data | GameUpdateWithoutSetInput | GameUncheckedUpdateWithoutSetInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | GameScalarWhereInput | No |
| data | GameUpdateManyMutationInput | GameUncheckedUpdateManyWithoutSetInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | EventWhereUniqueInput | No |
| update | EventUpdateWithoutSetsInput | EventUncheckedUpdateWithoutSetsInput | No |
| create | EventCreateWithoutSetsInput | EventUncheckedCreateWithoutSetsInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | EventWhereUniqueInput | No |
| data | EventUpdateWithoutSetsInput | EventUncheckedUpdateWithoutSetsInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | EventScalarWhereInput | No |
| data | EventUpdateManyMutationInput | EventUncheckedUpdateManyWithoutSetsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| type | SetType | No |
| number | Int | No |
| result | String | Null | Yes |
| isFinished | Boolean | No |
| doubles | DoubleCreateNestedManyWithoutSetsInput | No |
| winner | DoubleCreateNestedOneWithoutSetsWinsInput | No |
| match | MatchCreateNestedOneWithoutSetsInput | No |
| events | EventCreateNestedManyWithoutSetsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| type | SetType | No |
| number | Int | No |
| setWinnerId | String | Null | Yes |
| result | String | Null | Yes |
| matchId | String | No |
| isFinished | Boolean | No |
| doubles | DoubleUncheckedCreateNestedManyWithoutSetsInput | No |
| events | EventUncheckedCreateNestedManyWithoutSetsInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | SetWhereUniqueInput | No |
| create | SetCreateWithoutGamesInput | SetUncheckedCreateWithoutGamesInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| players | PlayerCreateNestedManyWithoutDoublesInput | No |
| matches | MatchCreateNestedManyWithoutDoublesInput | No |
| category | CategoryCreateNestedOneWithoutDoublesInput | No |
| sets | SetCreateNestedManyWithoutDoublesInput | No |
| matchesWins | MatchCreateNestedManyWithoutWinnerInput | No |
| setsWins | SetCreateNestedManyWithoutWinnerInput | No |
| gamesWins | GameCreateNestedManyWithoutWinnerInput | No |
| eventRequests | EventRequestCreateNestedManyWithoutDoubleInput | No |
| eventDouble | EventDoubleCreateNestedManyWithoutDoubleInput | No |
| invites | InviteCreateNestedManyWithoutDoubleInput | No |
| firstPlaceInGroups | DoublesGroupCreateNestedManyWithoutFirstPlaceInput | No |
| secondPlaceInGroups | DoublesGroupCreateNestedManyWithoutSecondPlaceInput | No |
| firstPlaceInCategory | CategoryGroupCreateNestedManyWithoutFirstPlaceInput | No |
| secondPlaceInCategory | CategoryGroupCreateNestedManyWithoutSecondPlaceInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| categoryId | String | No |
| players | PlayerUncheckedCreateNestedManyWithoutDoublesInput | No |
| matches | MatchUncheckedCreateNestedManyWithoutDoublesInput | No |
| sets | SetUncheckedCreateNestedManyWithoutDoublesInput | No |
| matchesWins | MatchUncheckedCreateNestedManyWithoutWinnerInput | No |
| setsWins | SetUncheckedCreateNestedManyWithoutWinnerInput | No |
| gamesWins | GameUncheckedCreateNestedManyWithoutWinnerInput | No |
| eventRequests | EventRequestUncheckedCreateNestedManyWithoutDoubleInput | No |
| eventDouble | EventDoubleUncheckedCreateNestedManyWithoutDoubleInput | No |
| invites | InviteUncheckedCreateNestedManyWithoutDoubleInput | No |
| firstPlaceInGroups | DoublesGroupUncheckedCreateNestedManyWithoutFirstPlaceInput | No |
| secondPlaceInGroups | DoublesGroupUncheckedCreateNestedManyWithoutSecondPlaceInput | No |
| firstPlaceInCategory | CategoryGroupUncheckedCreateNestedManyWithoutFirstPlaceInput | No |
| secondPlaceInCategory | CategoryGroupUncheckedCreateNestedManyWithoutSecondPlaceInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | DoubleWhereUniqueInput | No |
| create | DoubleCreateWithoutGamesInput | DoubleUncheckedCreateWithoutGamesInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| players | PlayerCreateNestedManyWithoutDoublesInput | No |
| matches | MatchCreateNestedManyWithoutDoublesInput | No |
| category | CategoryCreateNestedOneWithoutDoublesInput | No |
| games | GameCreateNestedManyWithoutDoublesInput | No |
| sets | SetCreateNestedManyWithoutDoublesInput | No |
| matchesWins | MatchCreateNestedManyWithoutWinnerInput | No |
| setsWins | SetCreateNestedManyWithoutWinnerInput | No |
| eventRequests | EventRequestCreateNestedManyWithoutDoubleInput | No |
| eventDouble | EventDoubleCreateNestedManyWithoutDoubleInput | No |
| invites | InviteCreateNestedManyWithoutDoubleInput | No |
| firstPlaceInGroups | DoublesGroupCreateNestedManyWithoutFirstPlaceInput | No |
| secondPlaceInGroups | DoublesGroupCreateNestedManyWithoutSecondPlaceInput | No |
| firstPlaceInCategory | CategoryGroupCreateNestedManyWithoutFirstPlaceInput | No |
| secondPlaceInCategory | CategoryGroupCreateNestedManyWithoutSecondPlaceInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| categoryId | String | No |
| players | PlayerUncheckedCreateNestedManyWithoutDoublesInput | No |
| matches | MatchUncheckedCreateNestedManyWithoutDoublesInput | No |
| games | GameUncheckedCreateNestedManyWithoutDoublesInput | No |
| sets | SetUncheckedCreateNestedManyWithoutDoublesInput | No |
| matchesWins | MatchUncheckedCreateNestedManyWithoutWinnerInput | No |
| setsWins | SetUncheckedCreateNestedManyWithoutWinnerInput | No |
| eventRequests | EventRequestUncheckedCreateNestedManyWithoutDoubleInput | No |
| eventDouble | EventDoubleUncheckedCreateNestedManyWithoutDoubleInput | No |
| invites | InviteUncheckedCreateNestedManyWithoutDoubleInput | No |
| firstPlaceInGroups | DoublesGroupUncheckedCreateNestedManyWithoutFirstPlaceInput | No |
| secondPlaceInGroups | DoublesGroupUncheckedCreateNestedManyWithoutSecondPlaceInput | No |
| firstPlaceInCategory | CategoryGroupUncheckedCreateNestedManyWithoutFirstPlaceInput | No |
| secondPlaceInCategory | CategoryGroupUncheckedCreateNestedManyWithoutSecondPlaceInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | DoubleWhereUniqueInput | No |
| create | DoubleCreateWithoutGamesWinsInput | DoubleUncheckedCreateWithoutGamesWinsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| name | String | No |
| isActive | Boolean | No |
| isFinished | Boolean | No |
| startDate | DateTime | Null | Yes |
| finishDate | DateTime | Null | Yes |
| matchDurationInMinutes | Int | Null | Yes |
| timeOfFirstMatch | Int | Null | Yes |
| timeOfLastMatch | Int | Null | Yes |
| eventType | EventType | No |
| matchType | MatchType | No |
| isGroupMatchesFinished | Boolean | No |
| categories | CategoryCreateNestedManyWithoutEventsInput | No |
| players | PlayerCreateNestedManyWithoutEventsInput | No |
| matches | MatchCreateNestedManyWithoutEventInput | No |
| places | PlaceCreateNestedManyWithoutEventsInput | No |
| eventRequests | EventRequestCreateNestedManyWithoutEventInput | No |
| eventDoubles | EventDoubleCreateNestedManyWithoutEventInput | No |
| sets | SetCreateNestedManyWithoutEventsInput | No |
| matchDates | MatchDateCreateNestedManyWithoutEventInput | No |
| courts | CourtCreateNestedManyWithoutEventsInput | No |
| invite | InviteCreateNestedOneWithoutEventInput | No |
| categoriesGroups | CategoryGroupCreateNestedManyWithoutEventInput | No |
| eventMatches | EventMatchCreateNestedManyWithoutEventInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | EventWhereUniqueInput | No |
| create | EventCreateWithoutGamesInput | EventUncheckedCreateWithoutGamesInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | SetUpdateWithoutGamesInput | SetUncheckedUpdateWithoutGamesInput | No |
| create | SetCreateWithoutGamesInput | SetUncheckedCreateWithoutGamesInput | No |
| where | SetWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | SetWhereInput | No |
| data | SetUpdateWithoutGamesInput | SetUncheckedUpdateWithoutGamesInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| type | SetType | EnumSetTypeFieldUpdateOperationsInput | No |
| number | Int | IntFieldUpdateOperationsInput | No |
| result | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| isFinished | Boolean | BoolFieldUpdateOperationsInput | No |
| doubles | DoubleUpdateManyWithoutSetsNestedInput | No |
| winner | DoubleUpdateOneWithoutSetsWinsNestedInput | No |
| match | MatchUpdateOneRequiredWithoutSetsNestedInput | No |
| events | EventUpdateManyWithoutSetsNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| type | SetType | EnumSetTypeFieldUpdateOperationsInput | No |
| number | Int | IntFieldUpdateOperationsInput | No |
| setWinnerId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| result | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| matchId | String | StringFieldUpdateOperationsInput | No |
| isFinished | Boolean | BoolFieldUpdateOperationsInput | No |
| doubles | DoubleUncheckedUpdateManyWithoutSetsNestedInput | No |
| events | EventUncheckedUpdateManyWithoutSetsNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | DoubleWhereUniqueInput | No |
| update | DoubleUpdateWithoutGamesInput | DoubleUncheckedUpdateWithoutGamesInput | No |
| create | DoubleCreateWithoutGamesInput | DoubleUncheckedCreateWithoutGamesInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | DoubleWhereUniqueInput | No |
| data | DoubleUpdateWithoutGamesInput | DoubleUncheckedUpdateWithoutGamesInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | DoubleScalarWhereInput | No |
| data | DoubleUpdateManyMutationInput | DoubleUncheckedUpdateManyWithoutGamesInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | DoubleUpdateWithoutGamesWinsInput | DoubleUncheckedUpdateWithoutGamesWinsInput | No |
| create | DoubleCreateWithoutGamesWinsInput | DoubleUncheckedCreateWithoutGamesWinsInput | No |
| where | DoubleWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | DoubleWhereInput | No |
| data | DoubleUpdateWithoutGamesWinsInput | DoubleUncheckedUpdateWithoutGamesWinsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| players | PlayerUpdateManyWithoutDoublesNestedInput | No |
| matches | MatchUpdateManyWithoutDoublesNestedInput | No |
| category | CategoryUpdateOneRequiredWithoutDoublesNestedInput | No |
| games | GameUpdateManyWithoutDoublesNestedInput | No |
| sets | SetUpdateManyWithoutDoublesNestedInput | No |
| matchesWins | MatchUpdateManyWithoutWinnerNestedInput | No |
| setsWins | SetUpdateManyWithoutWinnerNestedInput | No |
| eventRequests | EventRequestUpdateManyWithoutDoubleNestedInput | No |
| eventDouble | EventDoubleUpdateManyWithoutDoubleNestedInput | No |
| invites | InviteUpdateManyWithoutDoubleNestedInput | No |
| firstPlaceInGroups | DoublesGroupUpdateManyWithoutFirstPlaceNestedInput | No |
| secondPlaceInGroups | DoublesGroupUpdateManyWithoutSecondPlaceNestedInput | No |
| firstPlaceInCategory | CategoryGroupUpdateManyWithoutFirstPlaceNestedInput | No |
| secondPlaceInCategory | CategoryGroupUpdateManyWithoutSecondPlaceNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | EventWhereUniqueInput | No |
| update | EventUpdateWithoutGamesInput | EventUncheckedUpdateWithoutGamesInput | No |
| create | EventCreateWithoutGamesInput | EventUncheckedCreateWithoutGamesInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | EventWhereUniqueInput | No |
| data | EventUpdateWithoutGamesInput | EventUncheckedUpdateWithoutGamesInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | EventScalarWhereInput | No |
| data | EventUpdateManyMutationInput | EventUncheckedUpdateManyWithoutGamesInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| firstName | String | Null | Yes |
| lastName | String | Null | Yes |
| position | PlayerPosition | Null | Yes |
| category | CategoryCreateNestedOneWithoutPlayersInput | No |
| matches | MatchCreateNestedManyWithoutPlayersInput | No |
| doubles | DoubleCreateNestedManyWithoutPlayersInput | No |
| events | EventCreateNestedManyWithoutPlayersInput | No |
| invites | InviteCreateNestedManyWithoutPlayersInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| firstName | String | Null | Yes |
| lastName | String | Null | Yes |
| categoryId | String | No |
| position | PlayerPosition | Null | Yes |
| matches | MatchUncheckedCreateNestedManyWithoutPlayersInput | No |
| doubles | DoubleUncheckedCreateNestedManyWithoutPlayersInput | No |
| events | EventUncheckedCreateNestedManyWithoutPlayersInput | No |
| invites | InviteUncheckedCreateNestedManyWithoutPlayersInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | PlayerWhereUniqueInput | No |
| create | PlayerCreateWithoutUserInput | PlayerUncheckedCreateWithoutUserInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | PlayerUpdateWithoutUserInput | PlayerUncheckedUpdateWithoutUserInput | No |
| create | PlayerCreateWithoutUserInput | PlayerUncheckedCreateWithoutUserInput | No |
| where | PlayerWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | PlayerWhereInput | No |
| data | PlayerUpdateWithoutUserInput | PlayerUncheckedUpdateWithoutUserInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| firstName | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| lastName | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| position | PlayerPosition | NullableEnumPlayerPositionFieldUpdateOperationsInput | Null | Yes |
| category | CategoryUpdateOneRequiredWithoutPlayersNestedInput | No |
| matches | MatchUpdateManyWithoutPlayersNestedInput | No |
| doubles | DoubleUpdateManyWithoutPlayersNestedInput | No |
| events | EventUpdateManyWithoutPlayersNestedInput | No |
| invites | InviteUpdateManyWithoutPlayersNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| firstName | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| lastName | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| categoryId | String | StringFieldUpdateOperationsInput | No |
| position | PlayerPosition | NullableEnumPlayerPositionFieldUpdateOperationsInput | Null | Yes |
| matches | MatchUncheckedUpdateManyWithoutPlayersNestedInput | No |
| doubles | DoubleUncheckedUpdateManyWithoutPlayersNestedInput | No |
| events | EventUncheckedUpdateManyWithoutPlayersNestedInput | No |
| invites | InviteUncheckedUpdateManyWithoutPlayersNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| firstName | String | Null | Yes |
| lastName | String | Null | Yes |
| position | PlayerPosition | Null | Yes |
| category | CategoryCreateNestedOneWithoutPlayersInput | No |
| matches | MatchCreateNestedManyWithoutPlayersInput | No |
| doubles | DoubleCreateNestedManyWithoutPlayersInput | No |
| events | EventCreateNestedManyWithoutPlayersInput | No |
| user | UserCreateNestedOneWithoutPlayerInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| firstName | String | Null | Yes |
| lastName | String | Null | Yes |
| categoryId | String | No |
| position | PlayerPosition | Null | Yes |
| matches | MatchUncheckedCreateNestedManyWithoutPlayersInput | No |
| doubles | DoubleUncheckedCreateNestedManyWithoutPlayersInput | No |
| events | EventUncheckedCreateNestedManyWithoutPlayersInput | No |
| user | UserUncheckedCreateNestedOneWithoutPlayerInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | PlayerWhereUniqueInput | No |
| create | PlayerCreateWithoutInvitesInput | PlayerUncheckedCreateWithoutInvitesInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| players | PlayerCreateNestedManyWithoutDoublesInput | No |
| matches | MatchCreateNestedManyWithoutDoublesInput | No |
| category | CategoryCreateNestedOneWithoutDoublesInput | No |
| games | GameCreateNestedManyWithoutDoublesInput | No |
| sets | SetCreateNestedManyWithoutDoublesInput | No |
| matchesWins | MatchCreateNestedManyWithoutWinnerInput | No |
| setsWins | SetCreateNestedManyWithoutWinnerInput | No |
| gamesWins | GameCreateNestedManyWithoutWinnerInput | No |
| eventRequests | EventRequestCreateNestedManyWithoutDoubleInput | No |
| eventDouble | EventDoubleCreateNestedManyWithoutDoubleInput | No |
| firstPlaceInGroups | DoublesGroupCreateNestedManyWithoutFirstPlaceInput | No |
| secondPlaceInGroups | DoublesGroupCreateNestedManyWithoutSecondPlaceInput | No |
| firstPlaceInCategory | CategoryGroupCreateNestedManyWithoutFirstPlaceInput | No |
| secondPlaceInCategory | CategoryGroupCreateNestedManyWithoutSecondPlaceInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| categoryId | String | No |
| players | PlayerUncheckedCreateNestedManyWithoutDoublesInput | No |
| matches | MatchUncheckedCreateNestedManyWithoutDoublesInput | No |
| games | GameUncheckedCreateNestedManyWithoutDoublesInput | No |
| sets | SetUncheckedCreateNestedManyWithoutDoublesInput | No |
| matchesWins | MatchUncheckedCreateNestedManyWithoutWinnerInput | No |
| setsWins | SetUncheckedCreateNestedManyWithoutWinnerInput | No |
| gamesWins | GameUncheckedCreateNestedManyWithoutWinnerInput | No |
| eventRequests | EventRequestUncheckedCreateNestedManyWithoutDoubleInput | No |
| eventDouble | EventDoubleUncheckedCreateNestedManyWithoutDoubleInput | No |
| firstPlaceInGroups | DoublesGroupUncheckedCreateNestedManyWithoutFirstPlaceInput | No |
| secondPlaceInGroups | DoublesGroupUncheckedCreateNestedManyWithoutSecondPlaceInput | No |
| firstPlaceInCategory | CategoryGroupUncheckedCreateNestedManyWithoutFirstPlaceInput | No |
| secondPlaceInCategory | CategoryGroupUncheckedCreateNestedManyWithoutSecondPlaceInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | DoubleWhereUniqueInput | No |
| create | DoubleCreateWithoutInvitesInput | DoubleUncheckedCreateWithoutInvitesInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| name | String | No |
| isActive | Boolean | No |
| isFinished | Boolean | No |
| startDate | DateTime | Null | Yes |
| finishDate | DateTime | Null | Yes |
| matchDurationInMinutes | Int | Null | Yes |
| timeOfFirstMatch | Int | Null | Yes |
| timeOfLastMatch | Int | Null | Yes |
| eventType | EventType | No |
| matchType | MatchType | No |
| isGroupMatchesFinished | Boolean | No |
| categories | CategoryCreateNestedManyWithoutEventsInput | No |
| players | PlayerCreateNestedManyWithoutEventsInput | No |
| matches | MatchCreateNestedManyWithoutEventInput | No |
| places | PlaceCreateNestedManyWithoutEventsInput | No |
| eventRequests | EventRequestCreateNestedManyWithoutEventInput | No |
| eventDoubles | EventDoubleCreateNestedManyWithoutEventInput | No |
| games | GameCreateNestedManyWithoutEventsInput | No |
| sets | SetCreateNestedManyWithoutEventsInput | No |
| matchDates | MatchDateCreateNestedManyWithoutEventInput | No |
| courts | CourtCreateNestedManyWithoutEventsInput | No |
| categoriesGroups | CategoryGroupCreateNestedManyWithoutEventInput | No |
| eventMatches | EventMatchCreateNestedManyWithoutEventInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | EventWhereUniqueInput | No |
| create | EventCreateWithoutInviteInput | EventUncheckedCreateWithoutInviteInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| isFinished | Boolean | No |
| type | MatchType | No |
| players | PlayerCreateNestedManyWithoutMatchesInput | No |
| category | CategoryCreateNestedOneWithoutMatchesInput | No |
| winner | DoubleCreateNestedOneWithoutMatchesWinsInput | No |
| sets | SetCreateNestedManyWithoutMatchInput | No |
| doubles | DoubleCreateNestedManyWithoutMatchesInput | No |
| event | EventCreateNestedOneWithoutMatchesInput | No |
| matchDate | MatchDateCreateNestedOneWithoutMatchInput | No |
| court | CourtCreateNestedOneWithoutMatchesInput | No |
| eventMatch | EventMatchCreateNestedOneWithoutMatchInput | No |
| matchRefA | MatchesReferencedCreateNestedOneWithoutMatchAInput | No |
| matchRefB | MatchesReferencedCreateNestedOneWithoutMatchBInput | No |
| matchRef | MatchesReferencedCreateNestedOneWithoutRefMatchInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| isFinished | Boolean | No |
| categoryId | String | Null | Yes |
| winnerDoublesId | String | Null | Yes |
| eventId | String | Null | Yes |
| type | MatchType | No |
| courtId | String | Null | Yes |
| players | PlayerUncheckedCreateNestedManyWithoutMatchesInput | No |
| sets | SetUncheckedCreateNestedManyWithoutMatchInput | No |
| doubles | DoubleUncheckedCreateNestedManyWithoutMatchesInput | No |
| matchDate | MatchDateUncheckedCreateNestedOneWithoutMatchInput | No |
| eventMatch | EventMatchUncheckedCreateNestedOneWithoutMatchInput | No |
| matchRefA | MatchesReferencedUncheckedCreateNestedOneWithoutMatchAInput | No |
| matchRefB | MatchesReferencedUncheckedCreateNestedOneWithoutMatchBInput | No |
| matchRef | MatchesReferencedUncheckedCreateNestedOneWithoutRefMatchInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | MatchWhereUniqueInput | No |
| create | MatchCreateWithoutInviteInput | MatchUncheckedCreateWithoutInviteInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | PlayerWhereUniqueInput | No |
| update | PlayerUpdateWithoutInvitesInput | PlayerUncheckedUpdateWithoutInvitesInput | No |
| create | PlayerCreateWithoutInvitesInput | PlayerUncheckedCreateWithoutInvitesInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | PlayerWhereUniqueInput | No |
| data | PlayerUpdateWithoutInvitesInput | PlayerUncheckedUpdateWithoutInvitesInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | PlayerScalarWhereInput | No |
| data | PlayerUpdateManyMutationInput | PlayerUncheckedUpdateManyWithoutInvitesInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | DoubleUpdateWithoutInvitesInput | DoubleUncheckedUpdateWithoutInvitesInput | No |
| create | DoubleCreateWithoutInvitesInput | DoubleUncheckedCreateWithoutInvitesInput | No |
| where | DoubleWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | DoubleWhereInput | No |
| data | DoubleUpdateWithoutInvitesInput | DoubleUncheckedUpdateWithoutInvitesInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| players | PlayerUpdateManyWithoutDoublesNestedInput | No |
| matches | MatchUpdateManyWithoutDoublesNestedInput | No |
| category | CategoryUpdateOneRequiredWithoutDoublesNestedInput | No |
| games | GameUpdateManyWithoutDoublesNestedInput | No |
| sets | SetUpdateManyWithoutDoublesNestedInput | No |
| matchesWins | MatchUpdateManyWithoutWinnerNestedInput | No |
| setsWins | SetUpdateManyWithoutWinnerNestedInput | No |
| gamesWins | GameUpdateManyWithoutWinnerNestedInput | No |
| eventRequests | EventRequestUpdateManyWithoutDoubleNestedInput | No |
| eventDouble | EventDoubleUpdateManyWithoutDoubleNestedInput | No |
| firstPlaceInGroups | DoublesGroupUpdateManyWithoutFirstPlaceNestedInput | No |
| secondPlaceInGroups | DoublesGroupUpdateManyWithoutSecondPlaceNestedInput | No |
| firstPlaceInCategory | CategoryGroupUpdateManyWithoutFirstPlaceNestedInput | No |
| secondPlaceInCategory | CategoryGroupUpdateManyWithoutSecondPlaceNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | EventUpdateWithoutInviteInput | EventUncheckedUpdateWithoutInviteInput | No |
| create | EventCreateWithoutInviteInput | EventUncheckedCreateWithoutInviteInput | No |
| where | EventWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | EventWhereInput | No |
| data | EventUpdateWithoutInviteInput | EventUncheckedUpdateWithoutInviteInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | MatchUpdateWithoutInviteInput | MatchUncheckedUpdateWithoutInviteInput | No |
| create | MatchCreateWithoutInviteInput | MatchUncheckedCreateWithoutInviteInput | No |
| where | MatchWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | MatchWhereInput | No |
| data | MatchUpdateWithoutInviteInput | MatchUncheckedUpdateWithoutInviteInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| isFinished | Boolean | BoolFieldUpdateOperationsInput | No |
| type | MatchType | EnumMatchTypeFieldUpdateOperationsInput | No |
| players | PlayerUpdateManyWithoutMatchesNestedInput | No |
| category | CategoryUpdateOneWithoutMatchesNestedInput | No |
| winner | DoubleUpdateOneWithoutMatchesWinsNestedInput | No |
| sets | SetUpdateManyWithoutMatchNestedInput | No |
| doubles | DoubleUpdateManyWithoutMatchesNestedInput | No |
| event | EventUpdateOneWithoutMatchesNestedInput | No |
| matchDate | MatchDateUpdateOneWithoutMatchNestedInput | No |
| court | CourtUpdateOneWithoutMatchesNestedInput | No |
| eventMatch | EventMatchUpdateOneWithoutMatchNestedInput | No |
| matchRefA | MatchesReferencedUpdateOneWithoutMatchANestedInput | No |
| matchRefB | MatchesReferencedUpdateOneWithoutMatchBNestedInput | No |
| matchRef | MatchesReferencedUpdateOneWithoutRefMatchNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| isFinished | Boolean | BoolFieldUpdateOperationsInput | No |
| categoryId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| winnerDoublesId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| eventId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| type | MatchType | EnumMatchTypeFieldUpdateOperationsInput | No |
| courtId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| players | PlayerUncheckedUpdateManyWithoutMatchesNestedInput | No |
| sets | SetUncheckedUpdateManyWithoutMatchNestedInput | No |
| doubles | DoubleUncheckedUpdateManyWithoutMatchesNestedInput | No |
| matchDate | MatchDateUncheckedUpdateOneWithoutMatchNestedInput | No |
| eventMatch | EventMatchUncheckedUpdateOneWithoutMatchNestedInput | No |
| matchRefA | MatchesReferencedUncheckedUpdateOneWithoutMatchANestedInput | No |
| matchRefB | MatchesReferencedUncheckedUpdateOneWithoutMatchBNestedInput | No |
| matchRef | MatchesReferencedUncheckedUpdateOneWithoutRefMatchNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| level | Int | No |
| type | CatType | No |
| doubles | DoubleCreateNestedManyWithoutCategoryInput | No |
| events | EventCreateNestedManyWithoutCategoriesInput | No |
| matches | MatchCreateNestedManyWithoutCategoryInput | No |
| eventDoubles | EventDoubleCreateNestedManyWithoutCategoryInput | No |
| eventRequests | EventRequestCreateNestedManyWithoutCategoryInput | No |
| categoryGroup | CategoryGroupCreateNestedManyWithoutCategoryInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| level | Int | No |
| type | CatType | No |
| doubles | DoubleUncheckedCreateNestedManyWithoutCategoryInput | No |
| events | EventUncheckedCreateNestedManyWithoutCategoriesInput | No |
| matches | MatchUncheckedCreateNestedManyWithoutCategoryInput | No |
| eventDoubles | EventDoubleUncheckedCreateNestedManyWithoutCategoryInput | No |
| eventRequests | EventRequestUncheckedCreateNestedManyWithoutCategoryInput | No |
| categoryGroup | CategoryGroupUncheckedCreateNestedManyWithoutCategoryInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | CategoryWhereUniqueInput | No |
| create | CategoryCreateWithoutPlayersInput | CategoryUncheckedCreateWithoutPlayersInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| isFinished | Boolean | No |
| type | MatchType | No |
| category | CategoryCreateNestedOneWithoutMatchesInput | No |
| winner | DoubleCreateNestedOneWithoutMatchesWinsInput | No |
| sets | SetCreateNestedManyWithoutMatchInput | No |
| doubles | DoubleCreateNestedManyWithoutMatchesInput | No |
| event | EventCreateNestedOneWithoutMatchesInput | No |
| matchDate | MatchDateCreateNestedOneWithoutMatchInput | No |
| court | CourtCreateNestedOneWithoutMatchesInput | No |
| invite | InviteCreateNestedOneWithoutMatchInput | No |
| eventMatch | EventMatchCreateNestedOneWithoutMatchInput | No |
| matchRefA | MatchesReferencedCreateNestedOneWithoutMatchAInput | No |
| matchRefB | MatchesReferencedCreateNestedOneWithoutMatchBInput | No |
| matchRef | MatchesReferencedCreateNestedOneWithoutRefMatchInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| isFinished | Boolean | No |
| categoryId | String | Null | Yes |
| winnerDoublesId | String | Null | Yes |
| eventId | String | Null | Yes |
| type | MatchType | No |
| courtId | String | Null | Yes |
| sets | SetUncheckedCreateNestedManyWithoutMatchInput | No |
| doubles | DoubleUncheckedCreateNestedManyWithoutMatchesInput | No |
| matchDate | MatchDateUncheckedCreateNestedOneWithoutMatchInput | No |
| invite | InviteUncheckedCreateNestedOneWithoutMatchInput | No |
| eventMatch | EventMatchUncheckedCreateNestedOneWithoutMatchInput | No |
| matchRefA | MatchesReferencedUncheckedCreateNestedOneWithoutMatchAInput | No |
| matchRefB | MatchesReferencedUncheckedCreateNestedOneWithoutMatchBInput | No |
| matchRef | MatchesReferencedUncheckedCreateNestedOneWithoutRefMatchInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | MatchWhereUniqueInput | No |
| create | MatchCreateWithoutPlayersInput | MatchUncheckedCreateWithoutPlayersInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| matches | MatchCreateNestedManyWithoutDoublesInput | No |
| category | CategoryCreateNestedOneWithoutDoublesInput | No |
| games | GameCreateNestedManyWithoutDoublesInput | No |
| sets | SetCreateNestedManyWithoutDoublesInput | No |
| matchesWins | MatchCreateNestedManyWithoutWinnerInput | No |
| setsWins | SetCreateNestedManyWithoutWinnerInput | No |
| gamesWins | GameCreateNestedManyWithoutWinnerInput | No |
| eventRequests | EventRequestCreateNestedManyWithoutDoubleInput | No |
| eventDouble | EventDoubleCreateNestedManyWithoutDoubleInput | No |
| invites | InviteCreateNestedManyWithoutDoubleInput | No |
| firstPlaceInGroups | DoublesGroupCreateNestedManyWithoutFirstPlaceInput | No |
| secondPlaceInGroups | DoublesGroupCreateNestedManyWithoutSecondPlaceInput | No |
| firstPlaceInCategory | CategoryGroupCreateNestedManyWithoutFirstPlaceInput | No |
| secondPlaceInCategory | CategoryGroupCreateNestedManyWithoutSecondPlaceInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| categoryId | String | No |
| matches | MatchUncheckedCreateNestedManyWithoutDoublesInput | No |
| games | GameUncheckedCreateNestedManyWithoutDoublesInput | No |
| sets | SetUncheckedCreateNestedManyWithoutDoublesInput | No |
| matchesWins | MatchUncheckedCreateNestedManyWithoutWinnerInput | No |
| setsWins | SetUncheckedCreateNestedManyWithoutWinnerInput | No |
| gamesWins | GameUncheckedCreateNestedManyWithoutWinnerInput | No |
| eventRequests | EventRequestUncheckedCreateNestedManyWithoutDoubleInput | No |
| eventDouble | EventDoubleUncheckedCreateNestedManyWithoutDoubleInput | No |
| invites | InviteUncheckedCreateNestedManyWithoutDoubleInput | No |
| firstPlaceInGroups | DoublesGroupUncheckedCreateNestedManyWithoutFirstPlaceInput | No |
| secondPlaceInGroups | DoublesGroupUncheckedCreateNestedManyWithoutSecondPlaceInput | No |
| firstPlaceInCategory | CategoryGroupUncheckedCreateNestedManyWithoutFirstPlaceInput | No |
| secondPlaceInCategory | CategoryGroupUncheckedCreateNestedManyWithoutSecondPlaceInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | DoubleWhereUniqueInput | No |
| create | DoubleCreateWithoutPlayersInput | DoubleUncheckedCreateWithoutPlayersInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| name | String | No |
| isActive | Boolean | No |
| isFinished | Boolean | No |
| startDate | DateTime | Null | Yes |
| finishDate | DateTime | Null | Yes |
| matchDurationInMinutes | Int | Null | Yes |
| timeOfFirstMatch | Int | Null | Yes |
| timeOfLastMatch | Int | Null | Yes |
| eventType | EventType | No |
| matchType | MatchType | No |
| isGroupMatchesFinished | Boolean | No |
| categories | CategoryCreateNestedManyWithoutEventsInput | No |
| matches | MatchCreateNestedManyWithoutEventInput | No |
| places | PlaceCreateNestedManyWithoutEventsInput | No |
| eventRequests | EventRequestCreateNestedManyWithoutEventInput | No |
| eventDoubles | EventDoubleCreateNestedManyWithoutEventInput | No |
| games | GameCreateNestedManyWithoutEventsInput | No |
| sets | SetCreateNestedManyWithoutEventsInput | No |
| matchDates | MatchDateCreateNestedManyWithoutEventInput | No |
| courts | CourtCreateNestedManyWithoutEventsInput | No |
| invite | InviteCreateNestedOneWithoutEventInput | No |
| categoriesGroups | CategoryGroupCreateNestedManyWithoutEventInput | No |
| eventMatches | EventMatchCreateNestedManyWithoutEventInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | EventWhereUniqueInput | No |
| create | EventCreateWithoutPlayersInput | EventUncheckedCreateWithoutPlayersInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| firstName | String | Null | Yes |
| lastName | String | Null | Yes |
| String | No | |
| password | String | No |
| dob | DateTime | Null | Yes |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| role | Role | No |
| hashedRt | String | Null | Yes |
| profileImage | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| firstName | String | Null | Yes |
| lastName | String | Null | Yes |
| String | No | |
| password | String | No |
| dob | DateTime | Null | Yes |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| role | Role | No |
| hashedRt | String | Null | Yes |
| profileImage | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| where | UserWhereUniqueInput | No |
| create | UserCreateWithoutPlayerInput | UserUncheckedCreateWithoutPlayerInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| inviteType | InviteType | No |
| inviterId | String | No |
| invitedId | String | No |
| createdAt | DateTime | No |
| double | DoubleCreateNestedOneWithoutInvitesInput | No |
| event | EventCreateNestedOneWithoutInviteInput | No |
| match | MatchCreateNestedOneWithoutInviteInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| inviteType | InviteType | No |
| doublesId | String | Null | Yes |
| eventId | String | Null | Yes |
| matchId | String | Null | Yes |
| inviterId | String | No |
| invitedId | String | No |
| createdAt | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| where | InviteWhereUniqueInput | No |
| create | InviteCreateWithoutPlayersInput | InviteUncheckedCreateWithoutPlayersInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | CategoryUpdateWithoutPlayersInput | CategoryUncheckedUpdateWithoutPlayersInput | No |
| create | CategoryCreateWithoutPlayersInput | CategoryUncheckedCreateWithoutPlayersInput | No |
| where | CategoryWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | CategoryWhereInput | No |
| data | CategoryUpdateWithoutPlayersInput | CategoryUncheckedUpdateWithoutPlayersInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| level | Int | IntFieldUpdateOperationsInput | No |
| type | CatType | EnumCatTypeFieldUpdateOperationsInput | No |
| doubles | DoubleUpdateManyWithoutCategoryNestedInput | No |
| events | EventUpdateManyWithoutCategoriesNestedInput | No |
| matches | MatchUpdateManyWithoutCategoryNestedInput | No |
| eventDoubles | EventDoubleUpdateManyWithoutCategoryNestedInput | No |
| eventRequests | EventRequestUpdateManyWithoutCategoryNestedInput | No |
| categoryGroup | CategoryGroupUpdateManyWithoutCategoryNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| level | Int | IntFieldUpdateOperationsInput | No |
| type | CatType | EnumCatTypeFieldUpdateOperationsInput | No |
| doubles | DoubleUncheckedUpdateManyWithoutCategoryNestedInput | No |
| events | EventUncheckedUpdateManyWithoutCategoriesNestedInput | No |
| matches | MatchUncheckedUpdateManyWithoutCategoryNestedInput | No |
| eventDoubles | EventDoubleUncheckedUpdateManyWithoutCategoryNestedInput | No |
| eventRequests | EventRequestUncheckedUpdateManyWithoutCategoryNestedInput | No |
| categoryGroup | CategoryGroupUncheckedUpdateManyWithoutCategoryNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | MatchWhereUniqueInput | No |
| update | MatchUpdateWithoutPlayersInput | MatchUncheckedUpdateWithoutPlayersInput | No |
| create | MatchCreateWithoutPlayersInput | MatchUncheckedCreateWithoutPlayersInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | MatchWhereUniqueInput | No |
| data | MatchUpdateWithoutPlayersInput | MatchUncheckedUpdateWithoutPlayersInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | MatchScalarWhereInput | No |
| data | MatchUpdateManyMutationInput | MatchUncheckedUpdateManyWithoutPlayersInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | DoubleWhereUniqueInput | No |
| update | DoubleUpdateWithoutPlayersInput | DoubleUncheckedUpdateWithoutPlayersInput | No |
| create | DoubleCreateWithoutPlayersInput | DoubleUncheckedCreateWithoutPlayersInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | DoubleWhereUniqueInput | No |
| data | DoubleUpdateWithoutPlayersInput | DoubleUncheckedUpdateWithoutPlayersInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | DoubleScalarWhereInput | No |
| data | DoubleUpdateManyMutationInput | DoubleUncheckedUpdateManyWithoutPlayersInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | EventWhereUniqueInput | No |
| update | EventUpdateWithoutPlayersInput | EventUncheckedUpdateWithoutPlayersInput | No |
| create | EventCreateWithoutPlayersInput | EventUncheckedCreateWithoutPlayersInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | EventWhereUniqueInput | No |
| data | EventUpdateWithoutPlayersInput | EventUncheckedUpdateWithoutPlayersInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | EventScalarWhereInput | No |
| data | EventUpdateManyMutationInput | EventUncheckedUpdateManyWithoutPlayersInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | UserUpdateWithoutPlayerInput | UserUncheckedUpdateWithoutPlayerInput | No |
| create | UserCreateWithoutPlayerInput | UserUncheckedCreateWithoutPlayerInput | No |
| where | UserWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | UserWhereInput | No |
| data | UserUpdateWithoutPlayerInput | UserUncheckedUpdateWithoutPlayerInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| firstName | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| lastName | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| String | StringFieldUpdateOperationsInput | No | |
| password | String | StringFieldUpdateOperationsInput | No |
| dob | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| role | Role | EnumRoleFieldUpdateOperationsInput | No |
| hashedRt | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| profileImage | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| firstName | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| lastName | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| String | StringFieldUpdateOperationsInput | No | |
| password | String | StringFieldUpdateOperationsInput | No |
| dob | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| role | Role | EnumRoleFieldUpdateOperationsInput | No |
| hashedRt | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| profileImage | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| where | InviteWhereUniqueInput | No |
| update | InviteUpdateWithoutPlayersInput | InviteUncheckedUpdateWithoutPlayersInput | No |
| create | InviteCreateWithoutPlayersInput | InviteUncheckedCreateWithoutPlayersInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | InviteWhereUniqueInput | No |
| data | InviteUpdateWithoutPlayersInput | InviteUncheckedUpdateWithoutPlayersInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | InviteScalarWhereInput | No |
| data | InviteUpdateManyMutationInput | InviteUncheckedUpdateManyWithoutPlayersInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | InviteScalarWhereInput | InviteScalarWhereInput[] | No |
| OR | InviteScalarWhereInput[] | No |
| NOT | InviteScalarWhereInput | InviteScalarWhereInput[] | No |
| id | StringFilter | String | No |
| inviteType | EnumInviteTypeFilter | InviteType | No |
| doublesId | StringNullableFilter | String | Null | Yes |
| eventId | StringNullableFilter | String | Null | Yes |
| matchId | StringNullableFilter | String | Null | Yes |
| inviterId | StringFilter | String | No |
| invitedId | StringFilter | String | No |
| createdAt | DateTimeFilter | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| firstName | String | Null | Yes |
| lastName | String | Null | Yes |
| position | PlayerPosition | Null | Yes |
| category | CategoryCreateNestedOneWithoutPlayersInput | No |
| matches | MatchCreateNestedManyWithoutPlayersInput | No |
| events | EventCreateNestedManyWithoutPlayersInput | No |
| user | UserCreateNestedOneWithoutPlayerInput | No |
| invites | InviteCreateNestedManyWithoutPlayersInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| firstName | String | Null | Yes |
| lastName | String | Null | Yes |
| categoryId | String | No |
| position | PlayerPosition | Null | Yes |
| matches | MatchUncheckedCreateNestedManyWithoutPlayersInput | No |
| events | EventUncheckedCreateNestedManyWithoutPlayersInput | No |
| user | UserUncheckedCreateNestedOneWithoutPlayerInput | No |
| invites | InviteUncheckedCreateNestedManyWithoutPlayersInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | PlayerWhereUniqueInput | No |
| create | PlayerCreateWithoutDoublesInput | PlayerUncheckedCreateWithoutDoublesInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| isFinished | Boolean | No |
| type | MatchType | No |
| players | PlayerCreateNestedManyWithoutMatchesInput | No |
| category | CategoryCreateNestedOneWithoutMatchesInput | No |
| winner | DoubleCreateNestedOneWithoutMatchesWinsInput | No |
| sets | SetCreateNestedManyWithoutMatchInput | No |
| event | EventCreateNestedOneWithoutMatchesInput | No |
| matchDate | MatchDateCreateNestedOneWithoutMatchInput | No |
| court | CourtCreateNestedOneWithoutMatchesInput | No |
| invite | InviteCreateNestedOneWithoutMatchInput | No |
| eventMatch | EventMatchCreateNestedOneWithoutMatchInput | No |
| matchRefA | MatchesReferencedCreateNestedOneWithoutMatchAInput | No |
| matchRefB | MatchesReferencedCreateNestedOneWithoutMatchBInput | No |
| matchRef | MatchesReferencedCreateNestedOneWithoutRefMatchInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| isFinished | Boolean | No |
| categoryId | String | Null | Yes |
| winnerDoublesId | String | Null | Yes |
| eventId | String | Null | Yes |
| type | MatchType | No |
| courtId | String | Null | Yes |
| players | PlayerUncheckedCreateNestedManyWithoutMatchesInput | No |
| sets | SetUncheckedCreateNestedManyWithoutMatchInput | No |
| matchDate | MatchDateUncheckedCreateNestedOneWithoutMatchInput | No |
| invite | InviteUncheckedCreateNestedOneWithoutMatchInput | No |
| eventMatch | EventMatchUncheckedCreateNestedOneWithoutMatchInput | No |
| matchRefA | MatchesReferencedUncheckedCreateNestedOneWithoutMatchAInput | No |
| matchRefB | MatchesReferencedUncheckedCreateNestedOneWithoutMatchBInput | No |
| matchRef | MatchesReferencedUncheckedCreateNestedOneWithoutRefMatchInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | MatchWhereUniqueInput | No |
| create | MatchCreateWithoutDoublesInput | MatchUncheckedCreateWithoutDoublesInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| level | Int | No |
| type | CatType | No |
| players | PlayerCreateNestedManyWithoutCategoryInput | No |
| events | EventCreateNestedManyWithoutCategoriesInput | No |
| matches | MatchCreateNestedManyWithoutCategoryInput | No |
| eventDoubles | EventDoubleCreateNestedManyWithoutCategoryInput | No |
| eventRequests | EventRequestCreateNestedManyWithoutCategoryInput | No |
| categoryGroup | CategoryGroupCreateNestedManyWithoutCategoryInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| level | Int | No |
| type | CatType | No |
| players | PlayerUncheckedCreateNestedManyWithoutCategoryInput | No |
| events | EventUncheckedCreateNestedManyWithoutCategoriesInput | No |
| matches | MatchUncheckedCreateNestedManyWithoutCategoryInput | No |
| eventDoubles | EventDoubleUncheckedCreateNestedManyWithoutCategoryInput | No |
| eventRequests | EventRequestUncheckedCreateNestedManyWithoutCategoryInput | No |
| categoryGroup | CategoryGroupUncheckedCreateNestedManyWithoutCategoryInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | CategoryWhereUniqueInput | No |
| create | CategoryCreateWithoutDoublesInput | CategoryUncheckedCreateWithoutDoublesInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| set | SetCreateNestedOneWithoutGamesInput | No |
| winner | DoubleCreateNestedOneWithoutGamesWinsInput | No |
| events | EventCreateNestedManyWithoutGamesInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| setId | String | No |
| winnerId | String | Null | Yes |
| events | EventUncheckedCreateNestedManyWithoutGamesInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | GameWhereUniqueInput | No |
| create | GameCreateWithoutDoublesInput | GameUncheckedCreateWithoutDoublesInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| type | SetType | No |
| number | Int | No |
| result | String | Null | Yes |
| isFinished | Boolean | No |
| winner | DoubleCreateNestedOneWithoutSetsWinsInput | No |
| match | MatchCreateNestedOneWithoutSetsInput | No |
| games | GameCreateNestedManyWithoutSetInput | No |
| events | EventCreateNestedManyWithoutSetsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| type | SetType | No |
| number | Int | No |
| setWinnerId | String | Null | Yes |
| result | String | Null | Yes |
| matchId | String | No |
| isFinished | Boolean | No |
| games | GameUncheckedCreateNestedManyWithoutSetInput | No |
| events | EventUncheckedCreateNestedManyWithoutSetsInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | SetWhereUniqueInput | No |
| create | SetCreateWithoutDoublesInput | SetUncheckedCreateWithoutDoublesInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| isFinished | Boolean | No |
| type | MatchType | No |
| players | PlayerCreateNestedManyWithoutMatchesInput | No |
| category | CategoryCreateNestedOneWithoutMatchesInput | No |
| sets | SetCreateNestedManyWithoutMatchInput | No |
| doubles | DoubleCreateNestedManyWithoutMatchesInput | No |
| event | EventCreateNestedOneWithoutMatchesInput | No |
| matchDate | MatchDateCreateNestedOneWithoutMatchInput | No |
| court | CourtCreateNestedOneWithoutMatchesInput | No |
| invite | InviteCreateNestedOneWithoutMatchInput | No |
| eventMatch | EventMatchCreateNestedOneWithoutMatchInput | No |
| matchRefA | MatchesReferencedCreateNestedOneWithoutMatchAInput | No |
| matchRefB | MatchesReferencedCreateNestedOneWithoutMatchBInput | No |
| matchRef | MatchesReferencedCreateNestedOneWithoutRefMatchInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| isFinished | Boolean | No |
| categoryId | String | Null | Yes |
| eventId | String | Null | Yes |
| type | MatchType | No |
| courtId | String | Null | Yes |
| players | PlayerUncheckedCreateNestedManyWithoutMatchesInput | No |
| sets | SetUncheckedCreateNestedManyWithoutMatchInput | No |
| doubles | DoubleUncheckedCreateNestedManyWithoutMatchesInput | No |
| matchDate | MatchDateUncheckedCreateNestedOneWithoutMatchInput | No |
| invite | InviteUncheckedCreateNestedOneWithoutMatchInput | No |
| eventMatch | EventMatchUncheckedCreateNestedOneWithoutMatchInput | No |
| matchRefA | MatchesReferencedUncheckedCreateNestedOneWithoutMatchAInput | No |
| matchRefB | MatchesReferencedUncheckedCreateNestedOneWithoutMatchBInput | No |
| matchRef | MatchesReferencedUncheckedCreateNestedOneWithoutRefMatchInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | MatchWhereUniqueInput | No |
| create | MatchCreateWithoutWinnerInput | MatchUncheckedCreateWithoutWinnerInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | MatchCreateManyWinnerInput | MatchCreateManyWinnerInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| type | SetType | No |
| number | Int | No |
| result | String | Null | Yes |
| isFinished | Boolean | No |
| doubles | DoubleCreateNestedManyWithoutSetsInput | No |
| match | MatchCreateNestedOneWithoutSetsInput | No |
| games | GameCreateNestedManyWithoutSetInput | No |
| events | EventCreateNestedManyWithoutSetsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| type | SetType | No |
| number | Int | No |
| result | String | Null | Yes |
| matchId | String | No |
| isFinished | Boolean | No |
| doubles | DoubleUncheckedCreateNestedManyWithoutSetsInput | No |
| games | GameUncheckedCreateNestedManyWithoutSetInput | No |
| events | EventUncheckedCreateNestedManyWithoutSetsInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | SetWhereUniqueInput | No |
| create | SetCreateWithoutWinnerInput | SetUncheckedCreateWithoutWinnerInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | SetCreateManyWinnerInput | SetCreateManyWinnerInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| set | SetCreateNestedOneWithoutGamesInput | No |
| doubles | DoubleCreateNestedManyWithoutGamesInput | No |
| events | EventCreateNestedManyWithoutGamesInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| setId | String | No |
| doubles | DoubleUncheckedCreateNestedManyWithoutGamesInput | No |
| events | EventUncheckedCreateNestedManyWithoutGamesInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | GameWhereUniqueInput | No |
| create | GameCreateWithoutWinnerInput | GameUncheckedCreateWithoutWinnerInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | GameCreateManyWinnerInput | GameCreateManyWinnerInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| status | RequestStatus | No |
| event | EventCreateNestedOneWithoutEventRequestsInput | No |
| category | CategoryCreateNestedOneWithoutEventRequestsInput | No |
| Name | Type | Nullable |
|---|---|---|
| eventId | String | No |
| categoryId | String | No |
| status | RequestStatus | No |
| Name | Type | Nullable |
|---|---|---|
| where | EventRequestWhereUniqueInput | No |
| create | EventRequestCreateWithoutDoubleInput | EventRequestUncheckedCreateWithoutDoubleInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | EventRequestCreateManyDoubleInput | EventRequestCreateManyDoubleInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| event | EventCreateNestedOneWithoutEventDoublesInput | No |
| category | CategoryCreateNestedOneWithoutEventDoublesInput | No |
| atRest | MatchDateCreateNestedOneWithoutAtRestInput | No |
| DoublesGroup | DoublesGroupCreateNestedOneWithoutEventDoublesInput | No |
| Name | Type | Nullable |
|---|---|---|
| eventId | String | No |
| categoryId | String | No |
| atRestId | String | Null | Yes |
| doublesGroupId | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| where | EventDoubleWhereUniqueInput | No |
| create | EventDoubleCreateWithoutDoubleInput | EventDoubleUncheckedCreateWithoutDoubleInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | EventDoubleCreateManyDoubleInput | EventDoubleCreateManyDoubleInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| inviteType | InviteType | No |
| inviterId | String | No |
| invitedId | String | No |
| createdAt | DateTime | No |
| players | PlayerCreateNestedManyWithoutInvitesInput | No |
| event | EventCreateNestedOneWithoutInviteInput | No |
| match | MatchCreateNestedOneWithoutInviteInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| inviteType | InviteType | No |
| eventId | String | Null | Yes |
| matchId | String | Null | Yes |
| inviterId | String | No |
| invitedId | String | No |
| createdAt | DateTime | No |
| players | PlayerUncheckedCreateNestedManyWithoutInvitesInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | InviteWhereUniqueInput | No |
| create | InviteCreateWithoutDoubleInput | InviteUncheckedCreateWithoutDoubleInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | InviteCreateManyDoubleInput | InviteCreateManyDoubleInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| key | String | No |
| groupFinished | Boolean | No |
| eventDoubles | EventDoubleCreateNestedManyWithoutDoublesGroupInput | No |
| categoryGroup | CategoryGroupCreateNestedOneWithoutGroupsInput | No |
| secondPlace | DoubleCreateNestedOneWithoutSecondPlaceInGroupsInput | No |
| groupMatches | EventMatchCreateNestedManyWithoutDoublesGroupInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| key | String | No |
| categoryGroupId | String | Null | Yes |
| secondPlaceDoublesId | String | Null | Yes |
| groupFinished | Boolean | No |
| eventDoubles | EventDoubleUncheckedCreateNestedManyWithoutDoublesGroupInput | No |
| groupMatches | EventMatchUncheckedCreateNestedManyWithoutDoublesGroupInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | DoublesGroupWhereUniqueInput | No |
| create | DoublesGroupCreateWithoutFirstPlaceInput | DoublesGroupUncheckedCreateWithoutFirstPlaceInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | DoublesGroupCreateManyFirstPlaceInput | DoublesGroupCreateManyFirstPlaceInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| key | String | No |
| groupFinished | Boolean | No |
| eventDoubles | EventDoubleCreateNestedManyWithoutDoublesGroupInput | No |
| categoryGroup | CategoryGroupCreateNestedOneWithoutGroupsInput | No |
| firstPlace | DoubleCreateNestedOneWithoutFirstPlaceInGroupsInput | No |
| groupMatches | EventMatchCreateNestedManyWithoutDoublesGroupInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| key | String | No |
| categoryGroupId | String | Null | Yes |
| firstPlaceDoublesId | String | Null | Yes |
| groupFinished | Boolean | No |
| eventDoubles | EventDoubleUncheckedCreateNestedManyWithoutDoublesGroupInput | No |
| groupMatches | EventMatchUncheckedCreateNestedManyWithoutDoublesGroupInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | DoublesGroupWhereUniqueInput | No |
| create | DoublesGroupCreateWithoutSecondPlaceInput | DoublesGroupUncheckedCreateWithoutSecondPlaceInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | DoublesGroupCreateManySecondPlaceInput | DoublesGroupCreateManySecondPlaceInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| groupsStageFinished | Boolean | No |
| categoryFinished | Boolean | No |
| isFinalMatchesCreated | Boolean | No |
| category | CategoryCreateNestedOneWithoutCategoryGroupInput | No |
| groups | DoublesGroupCreateNestedManyWithoutCategoryGroupInput | No |
| event | EventCreateNestedOneWithoutCategoriesGroupsInput | No |
| finalMatches | EventMatchCreateNestedManyWithoutCategoryGroupInput | No |
| matchesWithReference | MatchesReferencedCreateNestedManyWithoutCategoryGroupInput | No |
| secondPlace | DoubleCreateNestedOneWithoutSecondPlaceInCategoryInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| categoryId | String | No |
| eventId | String | Null | Yes |
| secondPlaceId | String | Null | Yes |
| groupsStageFinished | Boolean | No |
| categoryFinished | Boolean | No |
| isFinalMatchesCreated | Boolean | No |
| groups | DoublesGroupUncheckedCreateNestedManyWithoutCategoryGroupInput | No |
| finalMatches | EventMatchUncheckedCreateNestedManyWithoutCategoryGroupInput | No |
| matchesWithReference | MatchesReferencedUncheckedCreateNestedManyWithoutCategoryGroupInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | CategoryGroupWhereUniqueInput | No |
| create | CategoryGroupCreateWithoutFirstPlaceInput | CategoryGroupUncheckedCreateWithoutFirstPlaceInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | CategoryGroupCreateManyFirstPlaceInput | CategoryGroupCreateManyFirstPlaceInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| groupsStageFinished | Boolean | No |
| categoryFinished | Boolean | No |
| isFinalMatchesCreated | Boolean | No |
| category | CategoryCreateNestedOneWithoutCategoryGroupInput | No |
| groups | DoublesGroupCreateNestedManyWithoutCategoryGroupInput | No |
| event | EventCreateNestedOneWithoutCategoriesGroupsInput | No |
| finalMatches | EventMatchCreateNestedManyWithoutCategoryGroupInput | No |
| matchesWithReference | MatchesReferencedCreateNestedManyWithoutCategoryGroupInput | No |
| firstPlace | DoubleCreateNestedOneWithoutFirstPlaceInCategoryInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| categoryId | String | No |
| eventId | String | Null | Yes |
| firstPlaceId | String | Null | Yes |
| groupsStageFinished | Boolean | No |
| categoryFinished | Boolean | No |
| isFinalMatchesCreated | Boolean | No |
| groups | DoublesGroupUncheckedCreateNestedManyWithoutCategoryGroupInput | No |
| finalMatches | EventMatchUncheckedCreateNestedManyWithoutCategoryGroupInput | No |
| matchesWithReference | MatchesReferencedUncheckedCreateNestedManyWithoutCategoryGroupInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | CategoryGroupWhereUniqueInput | No |
| create | CategoryGroupCreateWithoutSecondPlaceInput | CategoryGroupUncheckedCreateWithoutSecondPlaceInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | CategoryGroupCreateManySecondPlaceInput | CategoryGroupCreateManySecondPlaceInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| where | PlayerWhereUniqueInput | No |
| update | PlayerUpdateWithoutDoublesInput | PlayerUncheckedUpdateWithoutDoublesInput | No |
| create | PlayerCreateWithoutDoublesInput | PlayerUncheckedCreateWithoutDoublesInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | PlayerWhereUniqueInput | No |
| data | PlayerUpdateWithoutDoublesInput | PlayerUncheckedUpdateWithoutDoublesInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | PlayerScalarWhereInput | No |
| data | PlayerUpdateManyMutationInput | PlayerUncheckedUpdateManyWithoutDoublesInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | MatchWhereUniqueInput | No |
| update | MatchUpdateWithoutDoublesInput | MatchUncheckedUpdateWithoutDoublesInput | No |
| create | MatchCreateWithoutDoublesInput | MatchUncheckedCreateWithoutDoublesInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | MatchWhereUniqueInput | No |
| data | MatchUpdateWithoutDoublesInput | MatchUncheckedUpdateWithoutDoublesInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | MatchScalarWhereInput | No |
| data | MatchUpdateManyMutationInput | MatchUncheckedUpdateManyWithoutDoublesInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | CategoryUpdateWithoutDoublesInput | CategoryUncheckedUpdateWithoutDoublesInput | No |
| create | CategoryCreateWithoutDoublesInput | CategoryUncheckedCreateWithoutDoublesInput | No |
| where | CategoryWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | CategoryWhereInput | No |
| data | CategoryUpdateWithoutDoublesInput | CategoryUncheckedUpdateWithoutDoublesInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| level | Int | IntFieldUpdateOperationsInput | No |
| type | CatType | EnumCatTypeFieldUpdateOperationsInput | No |
| players | PlayerUpdateManyWithoutCategoryNestedInput | No |
| events | EventUpdateManyWithoutCategoriesNestedInput | No |
| matches | MatchUpdateManyWithoutCategoryNestedInput | No |
| eventDoubles | EventDoubleUpdateManyWithoutCategoryNestedInput | No |
| eventRequests | EventRequestUpdateManyWithoutCategoryNestedInput | No |
| categoryGroup | CategoryGroupUpdateManyWithoutCategoryNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| level | Int | IntFieldUpdateOperationsInput | No |
| type | CatType | EnumCatTypeFieldUpdateOperationsInput | No |
| players | PlayerUncheckedUpdateManyWithoutCategoryNestedInput | No |
| events | EventUncheckedUpdateManyWithoutCategoriesNestedInput | No |
| matches | MatchUncheckedUpdateManyWithoutCategoryNestedInput | No |
| eventDoubles | EventDoubleUncheckedUpdateManyWithoutCategoryNestedInput | No |
| eventRequests | EventRequestUncheckedUpdateManyWithoutCategoryNestedInput | No |
| categoryGroup | CategoryGroupUncheckedUpdateManyWithoutCategoryNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | GameWhereUniqueInput | No |
| update | GameUpdateWithoutDoublesInput | GameUncheckedUpdateWithoutDoublesInput | No |
| create | GameCreateWithoutDoublesInput | GameUncheckedCreateWithoutDoublesInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | GameWhereUniqueInput | No |
| data | GameUpdateWithoutDoublesInput | GameUncheckedUpdateWithoutDoublesInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | GameScalarWhereInput | No |
| data | GameUpdateManyMutationInput | GameUncheckedUpdateManyWithoutDoublesInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | SetWhereUniqueInput | No |
| update | SetUpdateWithoutDoublesInput | SetUncheckedUpdateWithoutDoublesInput | No |
| create | SetCreateWithoutDoublesInput | SetUncheckedCreateWithoutDoublesInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | SetWhereUniqueInput | No |
| data | SetUpdateWithoutDoublesInput | SetUncheckedUpdateWithoutDoublesInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | SetScalarWhereInput | No |
| data | SetUpdateManyMutationInput | SetUncheckedUpdateManyWithoutDoublesInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | MatchWhereUniqueInput | No |
| update | MatchUpdateWithoutWinnerInput | MatchUncheckedUpdateWithoutWinnerInput | No |
| create | MatchCreateWithoutWinnerInput | MatchUncheckedCreateWithoutWinnerInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | MatchWhereUniqueInput | No |
| data | MatchUpdateWithoutWinnerInput | MatchUncheckedUpdateWithoutWinnerInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | MatchScalarWhereInput | No |
| data | MatchUpdateManyMutationInput | MatchUncheckedUpdateManyWithoutWinnerInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | SetWhereUniqueInput | No |
| update | SetUpdateWithoutWinnerInput | SetUncheckedUpdateWithoutWinnerInput | No |
| create | SetCreateWithoutWinnerInput | SetUncheckedCreateWithoutWinnerInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | SetWhereUniqueInput | No |
| data | SetUpdateWithoutWinnerInput | SetUncheckedUpdateWithoutWinnerInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | SetScalarWhereInput | No |
| data | SetUpdateManyMutationInput | SetUncheckedUpdateManyWithoutWinnerInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | GameWhereUniqueInput | No |
| update | GameUpdateWithoutWinnerInput | GameUncheckedUpdateWithoutWinnerInput | No |
| create | GameCreateWithoutWinnerInput | GameUncheckedCreateWithoutWinnerInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | GameWhereUniqueInput | No |
| data | GameUpdateWithoutWinnerInput | GameUncheckedUpdateWithoutWinnerInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | GameScalarWhereInput | No |
| data | GameUpdateManyMutationInput | GameUncheckedUpdateManyWithoutWinnerInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | EventRequestWhereUniqueInput | No |
| update | EventRequestUpdateWithoutDoubleInput | EventRequestUncheckedUpdateWithoutDoubleInput | No |
| create | EventRequestCreateWithoutDoubleInput | EventRequestUncheckedCreateWithoutDoubleInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | EventRequestWhereUniqueInput | No |
| data | EventRequestUpdateWithoutDoubleInput | EventRequestUncheckedUpdateWithoutDoubleInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | EventRequestScalarWhereInput | No |
| data | EventRequestUpdateManyMutationInput | EventRequestUncheckedUpdateManyWithoutDoubleInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | EventDoubleWhereUniqueInput | No |
| update | EventDoubleUpdateWithoutDoubleInput | EventDoubleUncheckedUpdateWithoutDoubleInput | No |
| create | EventDoubleCreateWithoutDoubleInput | EventDoubleUncheckedCreateWithoutDoubleInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | EventDoubleWhereUniqueInput | No |
| data | EventDoubleUpdateWithoutDoubleInput | EventDoubleUncheckedUpdateWithoutDoubleInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | EventDoubleScalarWhereInput | No |
| data | EventDoubleUpdateManyMutationInput | EventDoubleUncheckedUpdateManyWithoutDoubleInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | InviteWhereUniqueInput | No |
| update | InviteUpdateWithoutDoubleInput | InviteUncheckedUpdateWithoutDoubleInput | No |
| create | InviteCreateWithoutDoubleInput | InviteUncheckedCreateWithoutDoubleInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | InviteWhereUniqueInput | No |
| data | InviteUpdateWithoutDoubleInput | InviteUncheckedUpdateWithoutDoubleInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | InviteScalarWhereInput | No |
| data | InviteUpdateManyMutationInput | InviteUncheckedUpdateManyWithoutDoubleInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | DoublesGroupWhereUniqueInput | No |
| update | DoublesGroupUpdateWithoutFirstPlaceInput | DoublesGroupUncheckedUpdateWithoutFirstPlaceInput | No |
| create | DoublesGroupCreateWithoutFirstPlaceInput | DoublesGroupUncheckedCreateWithoutFirstPlaceInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | DoublesGroupWhereUniqueInput | No |
| data | DoublesGroupUpdateWithoutFirstPlaceInput | DoublesGroupUncheckedUpdateWithoutFirstPlaceInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | DoublesGroupScalarWhereInput | No |
| data | DoublesGroupUpdateManyMutationInput | DoublesGroupUncheckedUpdateManyWithoutFirstPlaceInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | DoublesGroupWhereUniqueInput | No |
| update | DoublesGroupUpdateWithoutSecondPlaceInput | DoublesGroupUncheckedUpdateWithoutSecondPlaceInput | No |
| create | DoublesGroupCreateWithoutSecondPlaceInput | DoublesGroupUncheckedCreateWithoutSecondPlaceInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | DoublesGroupWhereUniqueInput | No |
| data | DoublesGroupUpdateWithoutSecondPlaceInput | DoublesGroupUncheckedUpdateWithoutSecondPlaceInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | DoublesGroupScalarWhereInput | No |
| data | DoublesGroupUpdateManyMutationInput | DoublesGroupUncheckedUpdateManyWithoutSecondPlaceInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | CategoryGroupWhereUniqueInput | No |
| update | CategoryGroupUpdateWithoutFirstPlaceInput | CategoryGroupUncheckedUpdateWithoutFirstPlaceInput | No |
| create | CategoryGroupCreateWithoutFirstPlaceInput | CategoryGroupUncheckedCreateWithoutFirstPlaceInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | CategoryGroupWhereUniqueInput | No |
| data | CategoryGroupUpdateWithoutFirstPlaceInput | CategoryGroupUncheckedUpdateWithoutFirstPlaceInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | CategoryGroupScalarWhereInput | No |
| data | CategoryGroupUpdateManyMutationInput | CategoryGroupUncheckedUpdateManyWithoutFirstPlaceInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | CategoryGroupWhereUniqueInput | No |
| update | CategoryGroupUpdateWithoutSecondPlaceInput | CategoryGroupUncheckedUpdateWithoutSecondPlaceInput | No |
| create | CategoryGroupCreateWithoutSecondPlaceInput | CategoryGroupUncheckedCreateWithoutSecondPlaceInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | CategoryGroupWhereUniqueInput | No |
| data | CategoryGroupUpdateWithoutSecondPlaceInput | CategoryGroupUncheckedUpdateWithoutSecondPlaceInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | CategoryGroupScalarWhereInput | No |
| data | CategoryGroupUpdateManyMutationInput | CategoryGroupUncheckedUpdateManyWithoutSecondPlaceInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| name | String | No |
| isActive | Boolean | No |
| isFinished | Boolean | No |
| startDate | DateTime | Null | Yes |
| finishDate | DateTime | Null | Yes |
| matchDurationInMinutes | Int | Null | Yes |
| timeOfFirstMatch | Int | Null | Yes |
| timeOfLastMatch | Int | Null | Yes |
| eventType | EventType | No |
| matchType | MatchType | No |
| isGroupMatchesFinished | Boolean | No |
| categories | CategoryCreateNestedManyWithoutEventsInput | No |
| players | PlayerCreateNestedManyWithoutEventsInput | No |
| matches | MatchCreateNestedManyWithoutEventInput | No |
| eventRequests | EventRequestCreateNestedManyWithoutEventInput | No |
| eventDoubles | EventDoubleCreateNestedManyWithoutEventInput | No |
| games | GameCreateNestedManyWithoutEventsInput | No |
| sets | SetCreateNestedManyWithoutEventsInput | No |
| matchDates | MatchDateCreateNestedManyWithoutEventInput | No |
| courts | CourtCreateNestedManyWithoutEventsInput | No |
| invite | InviteCreateNestedOneWithoutEventInput | No |
| categoriesGroups | CategoryGroupCreateNestedManyWithoutEventInput | No |
| eventMatches | EventMatchCreateNestedManyWithoutEventInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | EventWhereUniqueInput | No |
| create | EventCreateWithoutPlacesInput | EventUncheckedCreateWithoutPlacesInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| name | String | No |
| isAvailable | Boolean | No |
| events | EventCreateNestedManyWithoutCourtsInput | No |
| matches | MatchCreateNestedManyWithoutCourtInput | No |
| matchDates | MatchDateCreateNestedManyWithoutCourtInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| name | String | No |
| isAvailable | Boolean | No |
| events | EventUncheckedCreateNestedManyWithoutCourtsInput | No |
| matches | MatchUncheckedCreateNestedManyWithoutCourtInput | No |
| matchDates | MatchDateUncheckedCreateNestedManyWithoutCourtInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | CourtWhereUniqueInput | No |
| create | CourtCreateWithoutPlaceInput | CourtUncheckedCreateWithoutPlaceInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | CourtCreateManyPlaceInput | CourtCreateManyPlaceInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| where | EventWhereUniqueInput | No |
| update | EventUpdateWithoutPlacesInput | EventUncheckedUpdateWithoutPlacesInput | No |
| create | EventCreateWithoutPlacesInput | EventUncheckedCreateWithoutPlacesInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | EventWhereUniqueInput | No |
| data | EventUpdateWithoutPlacesInput | EventUncheckedUpdateWithoutPlacesInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | EventScalarWhereInput | No |
| data | EventUpdateManyMutationInput | EventUncheckedUpdateManyWithoutPlacesInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | CourtWhereUniqueInput | No |
| update | CourtUpdateWithoutPlaceInput | CourtUncheckedUpdateWithoutPlaceInput | No |
| create | CourtCreateWithoutPlaceInput | CourtUncheckedCreateWithoutPlaceInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | CourtWhereUniqueInput | No |
| data | CourtUpdateWithoutPlaceInput | CourtUncheckedUpdateWithoutPlaceInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | CourtScalarWhereInput | No |
| data | CourtUpdateManyMutationInput | CourtUncheckedUpdateManyWithoutPlaceInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| isFinished | Boolean | No |
| categoryId | String | Null | Yes |
| winnerDoublesId | String | Null | Yes |
| type | MatchType | No |
| courtId | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| doubleId | String | No |
| categoryId | String | No |
| status | RequestStatus | No |
| Name | Type | Nullable |
|---|---|---|
| doubleId | String | No |
| categoryId | String | No |
| atRestId | String | Null | Yes |
| doublesGroupId | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| matchId | String | Null | Yes |
| start | DateTime | No |
| finish | DateTime | No |
| courtId | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| categoryId | String | No |
| firstPlaceId | String | Null | Yes |
| secondPlaceId | String | Null | Yes |
| groupsStageFinished | Boolean | No |
| categoryFinished | Boolean | No |
| isFinalMatchesCreated | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| number | Int | No |
| type | EventMatchType | No |
| matchId | String | No |
| categoryGroupId | String | Null | Yes |
| doublesGroupId | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| level | Int | IntFieldUpdateOperationsInput | No |
| type | CatType | EnumCatTypeFieldUpdateOperationsInput | No |
| players | PlayerUpdateManyWithoutCategoryNestedInput | No |
| doubles | DoubleUpdateManyWithoutCategoryNestedInput | No |
| matches | MatchUpdateManyWithoutCategoryNestedInput | No |
| eventDoubles | EventDoubleUpdateManyWithoutCategoryNestedInput | No |
| eventRequests | EventRequestUpdateManyWithoutCategoryNestedInput | No |
| categoryGroup | CategoryGroupUpdateManyWithoutCategoryNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| level | Int | IntFieldUpdateOperationsInput | No |
| type | CatType | EnumCatTypeFieldUpdateOperationsInput | No |
| players | PlayerUncheckedUpdateManyWithoutCategoryNestedInput | No |
| doubles | DoubleUncheckedUpdateManyWithoutCategoryNestedInput | No |
| matches | MatchUncheckedUpdateManyWithoutCategoryNestedInput | No |
| eventDoubles | EventDoubleUncheckedUpdateManyWithoutCategoryNestedInput | No |
| eventRequests | EventRequestUncheckedUpdateManyWithoutCategoryNestedInput | No |
| categoryGroup | CategoryGroupUncheckedUpdateManyWithoutCategoryNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| level | Int | IntFieldUpdateOperationsInput | No |
| type | CatType | EnumCatTypeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| firstName | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| lastName | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| position | PlayerPosition | NullableEnumPlayerPositionFieldUpdateOperationsInput | Null | Yes |
| category | CategoryUpdateOneRequiredWithoutPlayersNestedInput | No |
| matches | MatchUpdateManyWithoutPlayersNestedInput | No |
| doubles | DoubleUpdateManyWithoutPlayersNestedInput | No |
| user | UserUpdateOneWithoutPlayerNestedInput | No |
| invites | InviteUpdateManyWithoutPlayersNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| firstName | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| lastName | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| categoryId | String | StringFieldUpdateOperationsInput | No |
| position | PlayerPosition | NullableEnumPlayerPositionFieldUpdateOperationsInput | Null | Yes |
| matches | MatchUncheckedUpdateManyWithoutPlayersNestedInput | No |
| doubles | DoubleUncheckedUpdateManyWithoutPlayersNestedInput | No |
| user | UserUncheckedUpdateOneWithoutPlayerNestedInput | No |
| invites | InviteUncheckedUpdateManyWithoutPlayersNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| firstName | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| lastName | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| categoryId | String | StringFieldUpdateOperationsInput | No |
| position | PlayerPosition | NullableEnumPlayerPositionFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| isFinished | Boolean | BoolFieldUpdateOperationsInput | No |
| type | MatchType | EnumMatchTypeFieldUpdateOperationsInput | No |
| players | PlayerUpdateManyWithoutMatchesNestedInput | No |
| category | CategoryUpdateOneWithoutMatchesNestedInput | No |
| winner | DoubleUpdateOneWithoutMatchesWinsNestedInput | No |
| sets | SetUpdateManyWithoutMatchNestedInput | No |
| doubles | DoubleUpdateManyWithoutMatchesNestedInput | No |
| matchDate | MatchDateUpdateOneWithoutMatchNestedInput | No |
| court | CourtUpdateOneWithoutMatchesNestedInput | No |
| invite | InviteUpdateOneWithoutMatchNestedInput | No |
| eventMatch | EventMatchUpdateOneWithoutMatchNestedInput | No |
| matchRefA | MatchesReferencedUpdateOneWithoutMatchANestedInput | No |
| matchRefB | MatchesReferencedUpdateOneWithoutMatchBNestedInput | No |
| matchRef | MatchesReferencedUpdateOneWithoutRefMatchNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| isFinished | Boolean | BoolFieldUpdateOperationsInput | No |
| categoryId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| winnerDoublesId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| type | MatchType | EnumMatchTypeFieldUpdateOperationsInput | No |
| courtId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| players | PlayerUncheckedUpdateManyWithoutMatchesNestedInput | No |
| sets | SetUncheckedUpdateManyWithoutMatchNestedInput | No |
| doubles | DoubleUncheckedUpdateManyWithoutMatchesNestedInput | No |
| matchDate | MatchDateUncheckedUpdateOneWithoutMatchNestedInput | No |
| invite | InviteUncheckedUpdateOneWithoutMatchNestedInput | No |
| eventMatch | EventMatchUncheckedUpdateOneWithoutMatchNestedInput | No |
| matchRefA | MatchesReferencedUncheckedUpdateOneWithoutMatchANestedInput | No |
| matchRefB | MatchesReferencedUncheckedUpdateOneWithoutMatchBNestedInput | No |
| matchRef | MatchesReferencedUncheckedUpdateOneWithoutRefMatchNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| isFinished | Boolean | BoolFieldUpdateOperationsInput | No |
| categoryId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| winnerDoublesId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| type | MatchType | EnumMatchTypeFieldUpdateOperationsInput | No |
| courtId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| name | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| address | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| courts | CourtUpdateManyWithoutPlaceNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| name | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| address | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| courts | CourtUncheckedUpdateManyWithoutPlaceNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| name | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| address | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| status | RequestStatus | EnumRequestStatusFieldUpdateOperationsInput | No |
| double | DoubleUpdateOneRequiredWithoutEventRequestsNestedInput | No |
| category | CategoryUpdateOneRequiredWithoutEventRequestsNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| doubleId | String | StringFieldUpdateOperationsInput | No |
| categoryId | String | StringFieldUpdateOperationsInput | No |
| status | RequestStatus | EnumRequestStatusFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| doubleId | String | StringFieldUpdateOperationsInput | No |
| categoryId | String | StringFieldUpdateOperationsInput | No |
| status | RequestStatus | EnumRequestStatusFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| double | DoubleUpdateOneRequiredWithoutEventDoubleNestedInput | No |
| category | CategoryUpdateOneRequiredWithoutEventDoublesNestedInput | No |
| atRest | MatchDateUpdateOneWithoutAtRestNestedInput | No |
| DoublesGroup | DoublesGroupUpdateOneWithoutEventDoublesNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| doubleId | String | StringFieldUpdateOperationsInput | No |
| categoryId | String | StringFieldUpdateOperationsInput | No |
| atRestId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| doublesGroupId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| doubleId | String | StringFieldUpdateOperationsInput | No |
| categoryId | String | StringFieldUpdateOperationsInput | No |
| atRestId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| doublesGroupId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| set | SetUpdateOneRequiredWithoutGamesNestedInput | No |
| doubles | DoubleUpdateManyWithoutGamesNestedInput | No |
| winner | DoubleUpdateOneWithoutGamesWinsNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| setId | String | StringFieldUpdateOperationsInput | No |
| winnerId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| doubles | DoubleUncheckedUpdateManyWithoutGamesNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| setId | String | StringFieldUpdateOperationsInput | No |
| winnerId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| type | SetType | EnumSetTypeFieldUpdateOperationsInput | No |
| number | Int | IntFieldUpdateOperationsInput | No |
| result | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| isFinished | Boolean | BoolFieldUpdateOperationsInput | No |
| doubles | DoubleUpdateManyWithoutSetsNestedInput | No |
| winner | DoubleUpdateOneWithoutSetsWinsNestedInput | No |
| match | MatchUpdateOneRequiredWithoutSetsNestedInput | No |
| games | GameUpdateManyWithoutSetNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| type | SetType | EnumSetTypeFieldUpdateOperationsInput | No |
| number | Int | IntFieldUpdateOperationsInput | No |
| setWinnerId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| result | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| matchId | String | StringFieldUpdateOperationsInput | No |
| isFinished | Boolean | BoolFieldUpdateOperationsInput | No |
| doubles | DoubleUncheckedUpdateManyWithoutSetsNestedInput | No |
| games | GameUncheckedUpdateManyWithoutSetNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| type | SetType | EnumSetTypeFieldUpdateOperationsInput | No |
| number | Int | IntFieldUpdateOperationsInput | No |
| setWinnerId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| result | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| matchId | String | StringFieldUpdateOperationsInput | No |
| isFinished | Boolean | BoolFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| start | DateTime | DateTimeFieldUpdateOperationsInput | No |
| finish | DateTime | DateTimeFieldUpdateOperationsInput | No |
| match | MatchUpdateOneWithoutMatchDateNestedInput | No |
| court | CourtUpdateOneRequiredWithoutMatchDatesNestedInput | No |
| atRest | EventDoubleUpdateManyWithoutAtRestNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| matchId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| start | DateTime | DateTimeFieldUpdateOperationsInput | No |
| finish | DateTime | DateTimeFieldUpdateOperationsInput | No |
| courtId | String | StringFieldUpdateOperationsInput | No |
| atRest | EventDoubleUncheckedUpdateManyWithoutAtRestNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| matchId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| start | DateTime | DateTimeFieldUpdateOperationsInput | No |
| finish | DateTime | DateTimeFieldUpdateOperationsInput | No |
| courtId | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| isAvailable | Boolean | BoolFieldUpdateOperationsInput | No |
| matches | MatchUpdateManyWithoutCourtNestedInput | No |
| place | PlaceUpdateOneRequiredWithoutCourtsNestedInput | No |
| matchDates | MatchDateUpdateManyWithoutCourtNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| isAvailable | Boolean | BoolFieldUpdateOperationsInput | No |
| placeId | String | StringFieldUpdateOperationsInput | No |
| matches | MatchUncheckedUpdateManyWithoutCourtNestedInput | No |
| matchDates | MatchDateUncheckedUpdateManyWithoutCourtNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| isAvailable | Boolean | BoolFieldUpdateOperationsInput | No |
| placeId | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| groupsStageFinished | Boolean | BoolFieldUpdateOperationsInput | No |
| categoryFinished | Boolean | BoolFieldUpdateOperationsInput | No |
| isFinalMatchesCreated | Boolean | BoolFieldUpdateOperationsInput | No |
| category | CategoryUpdateOneRequiredWithoutCategoryGroupNestedInput | No |
| groups | DoublesGroupUpdateManyWithoutCategoryGroupNestedInput | No |
| finalMatches | EventMatchUpdateManyWithoutCategoryGroupNestedInput | No |
| matchesWithReference | MatchesReferencedUpdateManyWithoutCategoryGroupNestedInput | No |
| firstPlace | DoubleUpdateOneWithoutFirstPlaceInCategoryNestedInput | No |
| secondPlace | DoubleUpdateOneWithoutSecondPlaceInCategoryNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| categoryId | String | StringFieldUpdateOperationsInput | No |
| firstPlaceId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| secondPlaceId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| groupsStageFinished | Boolean | BoolFieldUpdateOperationsInput | No |
| categoryFinished | Boolean | BoolFieldUpdateOperationsInput | No |
| isFinalMatchesCreated | Boolean | BoolFieldUpdateOperationsInput | No |
| groups | DoublesGroupUncheckedUpdateManyWithoutCategoryGroupNestedInput | No |
| finalMatches | EventMatchUncheckedUpdateManyWithoutCategoryGroupNestedInput | No |
| matchesWithReference | MatchesReferencedUncheckedUpdateManyWithoutCategoryGroupNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| categoryId | String | StringFieldUpdateOperationsInput | No |
| firstPlaceId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| secondPlaceId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| groupsStageFinished | Boolean | BoolFieldUpdateOperationsInput | No |
| categoryFinished | Boolean | BoolFieldUpdateOperationsInput | No |
| isFinalMatchesCreated | Boolean | BoolFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| number | Int | IntFieldUpdateOperationsInput | No |
| type | EventMatchType | EnumEventMatchTypeFieldUpdateOperationsInput | No |
| match | MatchUpdateOneRequiredWithoutEventMatchNestedInput | No |
| categoryGroup | CategoryGroupUpdateOneWithoutFinalMatchesNestedInput | No |
| doublesGroup | DoublesGroupUpdateOneWithoutGroupMatchesNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| number | Int | IntFieldUpdateOperationsInput | No |
| type | EventMatchType | EnumEventMatchTypeFieldUpdateOperationsInput | No |
| matchId | String | StringFieldUpdateOperationsInput | No |
| categoryGroupId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| doublesGroupId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| number | Int | IntFieldUpdateOperationsInput | No |
| type | EventMatchType | EnumEventMatchTypeFieldUpdateOperationsInput | No |
| matchId | String | StringFieldUpdateOperationsInput | No |
| categoryGroupId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| doublesGroupId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| key | String | No |
| firstPlaceDoublesId | String | Null | Yes |
| secondPlaceDoublesId | String | Null | Yes |
| groupFinished | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| number | Int | No |
| type | EventMatchType | No |
| eventId | String | No |
| matchId | String | No |
| doublesGroupId | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| matchAId | String | No |
| matchBId | String | Null | Yes |
| refMatchId | String | Null | Yes |
| isUpdated | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| key | String | StringFieldUpdateOperationsInput | No |
| groupFinished | Boolean | BoolFieldUpdateOperationsInput | No |
| eventDoubles | EventDoubleUpdateManyWithoutDoublesGroupNestedInput | No |
| firstPlace | DoubleUpdateOneWithoutFirstPlaceInGroupsNestedInput | No |
| secondPlace | DoubleUpdateOneWithoutSecondPlaceInGroupsNestedInput | No |
| groupMatches | EventMatchUpdateManyWithoutDoublesGroupNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| key | String | StringFieldUpdateOperationsInput | No |
| firstPlaceDoublesId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| secondPlaceDoublesId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| groupFinished | Boolean | BoolFieldUpdateOperationsInput | No |
| eventDoubles | EventDoubleUncheckedUpdateManyWithoutDoublesGroupNestedInput | No |
| groupMatches | EventMatchUncheckedUpdateManyWithoutDoublesGroupNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| key | String | StringFieldUpdateOperationsInput | No |
| firstPlaceDoublesId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| secondPlaceDoublesId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| groupFinished | Boolean | BoolFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| number | Int | IntFieldUpdateOperationsInput | No |
| type | EventMatchType | EnumEventMatchTypeFieldUpdateOperationsInput | No |
| event | EventUpdateOneRequiredWithoutEventMatchesNestedInput | No |
| match | MatchUpdateOneRequiredWithoutEventMatchNestedInput | No |
| doublesGroup | DoublesGroupUpdateOneWithoutGroupMatchesNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| number | Int | IntFieldUpdateOperationsInput | No |
| type | EventMatchType | EnumEventMatchTypeFieldUpdateOperationsInput | No |
| eventId | String | StringFieldUpdateOperationsInput | No |
| matchId | String | StringFieldUpdateOperationsInput | No |
| doublesGroupId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| number | Int | IntFieldUpdateOperationsInput | No |
| type | EventMatchType | EnumEventMatchTypeFieldUpdateOperationsInput | No |
| eventId | String | StringFieldUpdateOperationsInput | No |
| matchId | String | StringFieldUpdateOperationsInput | No |
| doublesGroupId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| isUpdated | Boolean | BoolFieldUpdateOperationsInput | No |
| matchA | MatchUpdateOneWithoutMatchRefANestedInput | No |
| matchB | MatchUpdateOneWithoutMatchRefBNestedInput | No |
| refMatch | MatchUpdateOneWithoutMatchRefNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| matchAId | String | StringFieldUpdateOperationsInput | No |
| matchBId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| refMatchId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| isUpdated | Boolean | BoolFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| matchAId | String | StringFieldUpdateOperationsInput | No |
| matchBId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| refMatchId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| isUpdated | Boolean | BoolFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| eventId | String | No |
| doubleId | String | No |
| categoryId | String | No |
| atRestId | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| number | Int | No |
| type | EventMatchType | No |
| eventId | String | No |
| matchId | String | No |
| categoryGroupId | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| event | EventUpdateOneRequiredWithoutEventDoublesNestedInput | No |
| double | DoubleUpdateOneRequiredWithoutEventDoubleNestedInput | No |
| category | CategoryUpdateOneRequiredWithoutEventDoublesNestedInput | No |
| atRest | MatchDateUpdateOneWithoutAtRestNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| eventId | String | StringFieldUpdateOperationsInput | No |
| doubleId | String | StringFieldUpdateOperationsInput | No |
| categoryId | String | StringFieldUpdateOperationsInput | No |
| atRestId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| eventId | String | StringFieldUpdateOperationsInput | No |
| doubleId | String | StringFieldUpdateOperationsInput | No |
| categoryId | String | StringFieldUpdateOperationsInput | No |
| atRestId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| number | Int | IntFieldUpdateOperationsInput | No |
| type | EventMatchType | EnumEventMatchTypeFieldUpdateOperationsInput | No |
| event | EventUpdateOneRequiredWithoutEventMatchesNestedInput | No |
| match | MatchUpdateOneRequiredWithoutEventMatchNestedInput | No |
| categoryGroup | CategoryGroupUpdateOneWithoutFinalMatchesNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| number | Int | IntFieldUpdateOperationsInput | No |
| type | EventMatchType | EnumEventMatchTypeFieldUpdateOperationsInput | No |
| eventId | String | StringFieldUpdateOperationsInput | No |
| matchId | String | StringFieldUpdateOperationsInput | No |
| categoryGroupId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| number | Int | IntFieldUpdateOperationsInput | No |
| type | EventMatchType | EnumEventMatchTypeFieldUpdateOperationsInput | No |
| eventId | String | StringFieldUpdateOperationsInput | No |
| matchId | String | StringFieldUpdateOperationsInput | No |
| categoryGroupId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| isFinished | Boolean | No |
| categoryId | String | Null | Yes |
| winnerDoublesId | String | Null | Yes |
| eventId | String | Null | Yes |
| type | MatchType | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| eventId | String | No |
| matchId | String | Null | Yes |
| start | DateTime | No |
| finish | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| isActive | Boolean | BoolFieldUpdateOperationsInput | No |
| isFinished | Boolean | BoolFieldUpdateOperationsInput | No |
| startDate | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| finishDate | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| matchDurationInMinutes | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| timeOfFirstMatch | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| timeOfLastMatch | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| eventType | EventType | EnumEventTypeFieldUpdateOperationsInput | No |
| matchType | MatchType | EnumMatchTypeFieldUpdateOperationsInput | No |
| isGroupMatchesFinished | Boolean | BoolFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| isFinished | Boolean | BoolFieldUpdateOperationsInput | No |
| type | MatchType | EnumMatchTypeFieldUpdateOperationsInput | No |
| players | PlayerUpdateManyWithoutMatchesNestedInput | No |
| category | CategoryUpdateOneWithoutMatchesNestedInput | No |
| winner | DoubleUpdateOneWithoutMatchesWinsNestedInput | No |
| sets | SetUpdateManyWithoutMatchNestedInput | No |
| doubles | DoubleUpdateManyWithoutMatchesNestedInput | No |
| event | EventUpdateOneWithoutMatchesNestedInput | No |
| matchDate | MatchDateUpdateOneWithoutMatchNestedInput | No |
| invite | InviteUpdateOneWithoutMatchNestedInput | No |
| eventMatch | EventMatchUpdateOneWithoutMatchNestedInput | No |
| matchRefA | MatchesReferencedUpdateOneWithoutMatchANestedInput | No |
| matchRefB | MatchesReferencedUpdateOneWithoutMatchBNestedInput | No |
| matchRef | MatchesReferencedUpdateOneWithoutRefMatchNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| isFinished | Boolean | BoolFieldUpdateOperationsInput | No |
| categoryId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| winnerDoublesId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| eventId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| type | MatchType | EnumMatchTypeFieldUpdateOperationsInput | No |
| players | PlayerUncheckedUpdateManyWithoutMatchesNestedInput | No |
| sets | SetUncheckedUpdateManyWithoutMatchNestedInput | No |
| doubles | DoubleUncheckedUpdateManyWithoutMatchesNestedInput | No |
| matchDate | MatchDateUncheckedUpdateOneWithoutMatchNestedInput | No |
| invite | InviteUncheckedUpdateOneWithoutMatchNestedInput | No |
| eventMatch | EventMatchUncheckedUpdateOneWithoutMatchNestedInput | No |
| matchRefA | MatchesReferencedUncheckedUpdateOneWithoutMatchANestedInput | No |
| matchRefB | MatchesReferencedUncheckedUpdateOneWithoutMatchBNestedInput | No |
| matchRef | MatchesReferencedUncheckedUpdateOneWithoutRefMatchNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| isFinished | Boolean | BoolFieldUpdateOperationsInput | No |
| categoryId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| winnerDoublesId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| eventId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| type | MatchType | EnumMatchTypeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| start | DateTime | DateTimeFieldUpdateOperationsInput | No |
| finish | DateTime | DateTimeFieldUpdateOperationsInput | No |
| event | EventUpdateOneRequiredWithoutMatchDatesNestedInput | No |
| match | MatchUpdateOneWithoutMatchDateNestedInput | No |
| atRest | EventDoubleUpdateManyWithoutAtRestNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| eventId | String | StringFieldUpdateOperationsInput | No |
| matchId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| start | DateTime | DateTimeFieldUpdateOperationsInput | No |
| finish | DateTime | DateTimeFieldUpdateOperationsInput | No |
| atRest | EventDoubleUncheckedUpdateManyWithoutAtRestNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| eventId | String | StringFieldUpdateOperationsInput | No |
| matchId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| start | DateTime | DateTimeFieldUpdateOperationsInput | No |
| finish | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| firstName | String | Null | Yes |
| lastName | String | Null | Yes |
| position | PlayerPosition | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| isFinished | Boolean | No |
| winnerDoublesId | String | Null | Yes |
| eventId | String | Null | Yes |
| type | MatchType | No |
| courtId | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| eventId | String | No |
| doubleId | String | No |
| atRestId | String | Null | Yes |
| doublesGroupId | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| eventId | String | No |
| doubleId | String | No |
| status | RequestStatus | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| eventId | String | Null | Yes |
| firstPlaceId | String | Null | Yes |
| secondPlaceId | String | Null | Yes |
| groupsStageFinished | Boolean | No |
| categoryFinished | Boolean | No |
| isFinalMatchesCreated | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| firstName | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| lastName | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| position | PlayerPosition | NullableEnumPlayerPositionFieldUpdateOperationsInput | Null | Yes |
| matches | MatchUpdateManyWithoutPlayersNestedInput | No |
| doubles | DoubleUpdateManyWithoutPlayersNestedInput | No |
| events | EventUpdateManyWithoutPlayersNestedInput | No |
| user | UserUpdateOneWithoutPlayerNestedInput | No |
| invites | InviteUpdateManyWithoutPlayersNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| firstName | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| lastName | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| position | PlayerPosition | NullableEnumPlayerPositionFieldUpdateOperationsInput | Null | Yes |
| matches | MatchUncheckedUpdateManyWithoutPlayersNestedInput | No |
| doubles | DoubleUncheckedUpdateManyWithoutPlayersNestedInput | No |
| events | EventUncheckedUpdateManyWithoutPlayersNestedInput | No |
| user | UserUncheckedUpdateOneWithoutPlayerNestedInput | No |
| invites | InviteUncheckedUpdateManyWithoutPlayersNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| firstName | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| lastName | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| position | PlayerPosition | NullableEnumPlayerPositionFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| players | PlayerUpdateManyWithoutDoublesNestedInput | No |
| matches | MatchUpdateManyWithoutDoublesNestedInput | No |
| games | GameUpdateManyWithoutDoublesNestedInput | No |
| sets | SetUpdateManyWithoutDoublesNestedInput | No |
| matchesWins | MatchUpdateManyWithoutWinnerNestedInput | No |
| setsWins | SetUpdateManyWithoutWinnerNestedInput | No |
| gamesWins | GameUpdateManyWithoutWinnerNestedInput | No |
| eventRequests | EventRequestUpdateManyWithoutDoubleNestedInput | No |
| eventDouble | EventDoubleUpdateManyWithoutDoubleNestedInput | No |
| invites | InviteUpdateManyWithoutDoubleNestedInput | No |
| firstPlaceInGroups | DoublesGroupUpdateManyWithoutFirstPlaceNestedInput | No |
| secondPlaceInGroups | DoublesGroupUpdateManyWithoutSecondPlaceNestedInput | No |
| firstPlaceInCategory | CategoryGroupUpdateManyWithoutFirstPlaceNestedInput | No |
| secondPlaceInCategory | CategoryGroupUpdateManyWithoutSecondPlaceNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| isActive | Boolean | BoolFieldUpdateOperationsInput | No |
| isFinished | Boolean | BoolFieldUpdateOperationsInput | No |
| startDate | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| finishDate | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| matchDurationInMinutes | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| timeOfFirstMatch | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| timeOfLastMatch | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| eventType | EventType | EnumEventTypeFieldUpdateOperationsInput | No |
| matchType | MatchType | EnumMatchTypeFieldUpdateOperationsInput | No |
| isGroupMatchesFinished | Boolean | BoolFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| isFinished | Boolean | BoolFieldUpdateOperationsInput | No |
| type | MatchType | EnumMatchTypeFieldUpdateOperationsInput | No |
| players | PlayerUpdateManyWithoutMatchesNestedInput | No |
| winner | DoubleUpdateOneWithoutMatchesWinsNestedInput | No |
| sets | SetUpdateManyWithoutMatchNestedInput | No |
| doubles | DoubleUpdateManyWithoutMatchesNestedInput | No |
| event | EventUpdateOneWithoutMatchesNestedInput | No |
| matchDate | MatchDateUpdateOneWithoutMatchNestedInput | No |
| court | CourtUpdateOneWithoutMatchesNestedInput | No |
| invite | InviteUpdateOneWithoutMatchNestedInput | No |
| eventMatch | EventMatchUpdateOneWithoutMatchNestedInput | No |
| matchRefA | MatchesReferencedUpdateOneWithoutMatchANestedInput | No |
| matchRefB | MatchesReferencedUpdateOneWithoutMatchBNestedInput | No |
| matchRef | MatchesReferencedUpdateOneWithoutRefMatchNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| isFinished | Boolean | BoolFieldUpdateOperationsInput | No |
| winnerDoublesId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| eventId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| type | MatchType | EnumMatchTypeFieldUpdateOperationsInput | No |
| courtId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| players | PlayerUncheckedUpdateManyWithoutMatchesNestedInput | No |
| sets | SetUncheckedUpdateManyWithoutMatchNestedInput | No |
| doubles | DoubleUncheckedUpdateManyWithoutMatchesNestedInput | No |
| matchDate | MatchDateUncheckedUpdateOneWithoutMatchNestedInput | No |
| invite | InviteUncheckedUpdateOneWithoutMatchNestedInput | No |
| eventMatch | EventMatchUncheckedUpdateOneWithoutMatchNestedInput | No |
| matchRefA | MatchesReferencedUncheckedUpdateOneWithoutMatchANestedInput | No |
| matchRefB | MatchesReferencedUncheckedUpdateOneWithoutMatchBNestedInput | No |
| matchRef | MatchesReferencedUncheckedUpdateOneWithoutRefMatchNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| isFinished | Boolean | BoolFieldUpdateOperationsInput | No |
| winnerDoublesId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| eventId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| type | MatchType | EnumMatchTypeFieldUpdateOperationsInput | No |
| courtId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| event | EventUpdateOneRequiredWithoutEventDoublesNestedInput | No |
| double | DoubleUpdateOneRequiredWithoutEventDoubleNestedInput | No |
| atRest | MatchDateUpdateOneWithoutAtRestNestedInput | No |
| DoublesGroup | DoublesGroupUpdateOneWithoutEventDoublesNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| eventId | String | StringFieldUpdateOperationsInput | No |
| doubleId | String | StringFieldUpdateOperationsInput | No |
| atRestId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| doublesGroupId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| eventId | String | StringFieldUpdateOperationsInput | No |
| doubleId | String | StringFieldUpdateOperationsInput | No |
| atRestId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| doublesGroupId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| status | RequestStatus | EnumRequestStatusFieldUpdateOperationsInput | No |
| event | EventUpdateOneRequiredWithoutEventRequestsNestedInput | No |
| double | DoubleUpdateOneRequiredWithoutEventRequestsNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| eventId | String | StringFieldUpdateOperationsInput | No |
| doubleId | String | StringFieldUpdateOperationsInput | No |
| status | RequestStatus | EnumRequestStatusFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| eventId | String | StringFieldUpdateOperationsInput | No |
| doubleId | String | StringFieldUpdateOperationsInput | No |
| status | RequestStatus | EnumRequestStatusFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| groupsStageFinished | Boolean | BoolFieldUpdateOperationsInput | No |
| categoryFinished | Boolean | BoolFieldUpdateOperationsInput | No |
| isFinalMatchesCreated | Boolean | BoolFieldUpdateOperationsInput | No |
| groups | DoublesGroupUpdateManyWithoutCategoryGroupNestedInput | No |
| event | EventUpdateOneWithoutCategoriesGroupsNestedInput | No |
| finalMatches | EventMatchUpdateManyWithoutCategoryGroupNestedInput | No |
| matchesWithReference | MatchesReferencedUpdateManyWithoutCategoryGroupNestedInput | No |
| firstPlace | DoubleUpdateOneWithoutFirstPlaceInCategoryNestedInput | No |
| secondPlace | DoubleUpdateOneWithoutSecondPlaceInCategoryNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| eventId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| firstPlaceId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| secondPlaceId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| groupsStageFinished | Boolean | BoolFieldUpdateOperationsInput | No |
| categoryFinished | Boolean | BoolFieldUpdateOperationsInput | No |
| isFinalMatchesCreated | Boolean | BoolFieldUpdateOperationsInput | No |
| groups | DoublesGroupUncheckedUpdateManyWithoutCategoryGroupNestedInput | No |
| finalMatches | EventMatchUncheckedUpdateManyWithoutCategoryGroupNestedInput | No |
| matchesWithReference | MatchesReferencedUncheckedUpdateManyWithoutCategoryGroupNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| eventId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| firstPlaceId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| secondPlaceId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| groupsStageFinished | Boolean | BoolFieldUpdateOperationsInput | No |
| categoryFinished | Boolean | BoolFieldUpdateOperationsInput | No |
| isFinalMatchesCreated | Boolean | BoolFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| type | SetType | No |
| number | Int | No |
| setWinnerId | String | Null | Yes |
| result | String | Null | Yes |
| isFinished | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| firstName | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| lastName | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| position | PlayerPosition | NullableEnumPlayerPositionFieldUpdateOperationsInput | Null | Yes |
| category | CategoryUpdateOneRequiredWithoutPlayersNestedInput | No |
| doubles | DoubleUpdateManyWithoutPlayersNestedInput | No |
| events | EventUpdateManyWithoutPlayersNestedInput | No |
| user | UserUpdateOneWithoutPlayerNestedInput | No |
| invites | InviteUpdateManyWithoutPlayersNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| firstName | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| lastName | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| categoryId | String | StringFieldUpdateOperationsInput | No |
| position | PlayerPosition | NullableEnumPlayerPositionFieldUpdateOperationsInput | Null | Yes |
| doubles | DoubleUncheckedUpdateManyWithoutPlayersNestedInput | No |
| events | EventUncheckedUpdateManyWithoutPlayersNestedInput | No |
| user | UserUncheckedUpdateOneWithoutPlayerNestedInput | No |
| invites | InviteUncheckedUpdateManyWithoutPlayersNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| firstName | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| lastName | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| categoryId | String | StringFieldUpdateOperationsInput | No |
| position | PlayerPosition | NullableEnumPlayerPositionFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| type | SetType | EnumSetTypeFieldUpdateOperationsInput | No |
| number | Int | IntFieldUpdateOperationsInput | No |
| result | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| isFinished | Boolean | BoolFieldUpdateOperationsInput | No |
| doubles | DoubleUpdateManyWithoutSetsNestedInput | No |
| winner | DoubleUpdateOneWithoutSetsWinsNestedInput | No |
| games | GameUpdateManyWithoutSetNestedInput | No |
| events | EventUpdateManyWithoutSetsNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| type | SetType | EnumSetTypeFieldUpdateOperationsInput | No |
| number | Int | IntFieldUpdateOperationsInput | No |
| setWinnerId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| result | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| isFinished | Boolean | BoolFieldUpdateOperationsInput | No |
| doubles | DoubleUncheckedUpdateManyWithoutSetsNestedInput | No |
| games | GameUncheckedUpdateManyWithoutSetNestedInput | No |
| events | EventUncheckedUpdateManyWithoutSetsNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| type | SetType | EnumSetTypeFieldUpdateOperationsInput | No |
| number | Int | IntFieldUpdateOperationsInput | No |
| setWinnerId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| result | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| isFinished | Boolean | BoolFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| players | PlayerUpdateManyWithoutDoublesNestedInput | No |
| category | CategoryUpdateOneRequiredWithoutDoublesNestedInput | No |
| games | GameUpdateManyWithoutDoublesNestedInput | No |
| sets | SetUpdateManyWithoutDoublesNestedInput | No |
| matchesWins | MatchUpdateManyWithoutWinnerNestedInput | No |
| setsWins | SetUpdateManyWithoutWinnerNestedInput | No |
| gamesWins | GameUpdateManyWithoutWinnerNestedInput | No |
| eventRequests | EventRequestUpdateManyWithoutDoubleNestedInput | No |
| eventDouble | EventDoubleUpdateManyWithoutDoubleNestedInput | No |
| invites | InviteUpdateManyWithoutDoubleNestedInput | No |
| firstPlaceInGroups | DoublesGroupUpdateManyWithoutFirstPlaceNestedInput | No |
| secondPlaceInGroups | DoublesGroupUpdateManyWithoutSecondPlaceNestedInput | No |
| firstPlaceInCategory | CategoryGroupUpdateManyWithoutFirstPlaceNestedInput | No |
| secondPlaceInCategory | CategoryGroupUpdateManyWithoutSecondPlaceNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| categoryId | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| eventId | String | No |
| doubleId | String | No |
| categoryId | String | No |
| doublesGroupId | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| event | EventUpdateOneRequiredWithoutEventDoublesNestedInput | No |
| double | DoubleUpdateOneRequiredWithoutEventDoubleNestedInput | No |
| category | CategoryUpdateOneRequiredWithoutEventDoublesNestedInput | No |
| DoublesGroup | DoublesGroupUpdateOneWithoutEventDoublesNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| eventId | String | StringFieldUpdateOperationsInput | No |
| doubleId | String | StringFieldUpdateOperationsInput | No |
| categoryId | String | StringFieldUpdateOperationsInput | No |
| doublesGroupId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| eventId | String | StringFieldUpdateOperationsInput | No |
| doubleId | String | StringFieldUpdateOperationsInput | No |
| categoryId | String | StringFieldUpdateOperationsInput | No |
| doublesGroupId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| winnerId | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| players | PlayerUpdateManyWithoutDoublesNestedInput | No |
| matches | MatchUpdateManyWithoutDoublesNestedInput | No |
| category | CategoryUpdateOneRequiredWithoutDoublesNestedInput | No |
| games | GameUpdateManyWithoutDoublesNestedInput | No |
| matchesWins | MatchUpdateManyWithoutWinnerNestedInput | No |
| setsWins | SetUpdateManyWithoutWinnerNestedInput | No |
| gamesWins | GameUpdateManyWithoutWinnerNestedInput | No |
| eventRequests | EventRequestUpdateManyWithoutDoubleNestedInput | No |
| eventDouble | EventDoubleUpdateManyWithoutDoubleNestedInput | No |
| invites | InviteUpdateManyWithoutDoubleNestedInput | No |
| firstPlaceInGroups | DoublesGroupUpdateManyWithoutFirstPlaceNestedInput | No |
| secondPlaceInGroups | DoublesGroupUpdateManyWithoutSecondPlaceNestedInput | No |
| firstPlaceInCategory | CategoryGroupUpdateManyWithoutFirstPlaceNestedInput | No |
| secondPlaceInCategory | CategoryGroupUpdateManyWithoutSecondPlaceNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| categoryId | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| doubles | DoubleUpdateManyWithoutGamesNestedInput | No |
| winner | DoubleUpdateOneWithoutGamesWinsNestedInput | No |
| events | EventUpdateManyWithoutGamesNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| winnerId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| doubles | DoubleUncheckedUpdateManyWithoutGamesNestedInput | No |
| events | EventUncheckedUpdateManyWithoutGamesNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| winnerId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| isActive | Boolean | BoolFieldUpdateOperationsInput | No |
| isFinished | Boolean | BoolFieldUpdateOperationsInput | No |
| startDate | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| finishDate | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| matchDurationInMinutes | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| timeOfFirstMatch | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| timeOfLastMatch | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| eventType | EventType | EnumEventTypeFieldUpdateOperationsInput | No |
| matchType | MatchType | EnumMatchTypeFieldUpdateOperationsInput | No |
| isGroupMatchesFinished | Boolean | BoolFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| players | PlayerUpdateManyWithoutDoublesNestedInput | No |
| matches | MatchUpdateManyWithoutDoublesNestedInput | No |
| category | CategoryUpdateOneRequiredWithoutDoublesNestedInput | No |
| sets | SetUpdateManyWithoutDoublesNestedInput | No |
| matchesWins | MatchUpdateManyWithoutWinnerNestedInput | No |
| setsWins | SetUpdateManyWithoutWinnerNestedInput | No |
| gamesWins | GameUpdateManyWithoutWinnerNestedInput | No |
| eventRequests | EventRequestUpdateManyWithoutDoubleNestedInput | No |
| eventDouble | EventDoubleUpdateManyWithoutDoubleNestedInput | No |
| invites | InviteUpdateManyWithoutDoubleNestedInput | No |
| firstPlaceInGroups | DoublesGroupUpdateManyWithoutFirstPlaceNestedInput | No |
| secondPlaceInGroups | DoublesGroupUpdateManyWithoutSecondPlaceNestedInput | No |
| firstPlaceInCategory | CategoryGroupUpdateManyWithoutFirstPlaceNestedInput | No |
| secondPlaceInCategory | CategoryGroupUpdateManyWithoutSecondPlaceNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| categoryId | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| isActive | Boolean | BoolFieldUpdateOperationsInput | No |
| isFinished | Boolean | BoolFieldUpdateOperationsInput | No |
| startDate | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| finishDate | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| matchDurationInMinutes | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| timeOfFirstMatch | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| timeOfLastMatch | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| eventType | EventType | EnumEventTypeFieldUpdateOperationsInput | No |
| matchType | MatchType | EnumMatchTypeFieldUpdateOperationsInput | No |
| isGroupMatchesFinished | Boolean | BoolFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| firstName | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| lastName | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| position | PlayerPosition | NullableEnumPlayerPositionFieldUpdateOperationsInput | Null | Yes |
| category | CategoryUpdateOneRequiredWithoutPlayersNestedInput | No |
| matches | MatchUpdateManyWithoutPlayersNestedInput | No |
| doubles | DoubleUpdateManyWithoutPlayersNestedInput | No |
| events | EventUpdateManyWithoutPlayersNestedInput | No |
| user | UserUpdateOneWithoutPlayerNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| firstName | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| lastName | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| categoryId | String | StringFieldUpdateOperationsInput | No |
| position | PlayerPosition | NullableEnumPlayerPositionFieldUpdateOperationsInput | Null | Yes |
| matches | MatchUncheckedUpdateManyWithoutPlayersNestedInput | No |
| doubles | DoubleUncheckedUpdateManyWithoutPlayersNestedInput | No |
| events | EventUncheckedUpdateManyWithoutPlayersNestedInput | No |
| user | UserUncheckedUpdateOneWithoutPlayerNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| firstName | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| lastName | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| categoryId | String | StringFieldUpdateOperationsInput | No |
| position | PlayerPosition | NullableEnumPlayerPositionFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| isFinished | Boolean | BoolFieldUpdateOperationsInput | No |
| type | MatchType | EnumMatchTypeFieldUpdateOperationsInput | No |
| category | CategoryUpdateOneWithoutMatchesNestedInput | No |
| winner | DoubleUpdateOneWithoutMatchesWinsNestedInput | No |
| sets | SetUpdateManyWithoutMatchNestedInput | No |
| doubles | DoubleUpdateManyWithoutMatchesNestedInput | No |
| event | EventUpdateOneWithoutMatchesNestedInput | No |
| matchDate | MatchDateUpdateOneWithoutMatchNestedInput | No |
| court | CourtUpdateOneWithoutMatchesNestedInput | No |
| invite | InviteUpdateOneWithoutMatchNestedInput | No |
| eventMatch | EventMatchUpdateOneWithoutMatchNestedInput | No |
| matchRefA | MatchesReferencedUpdateOneWithoutMatchANestedInput | No |
| matchRefB | MatchesReferencedUpdateOneWithoutMatchBNestedInput | No |
| matchRef | MatchesReferencedUpdateOneWithoutRefMatchNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| isFinished | Boolean | BoolFieldUpdateOperationsInput | No |
| categoryId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| winnerDoublesId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| eventId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| type | MatchType | EnumMatchTypeFieldUpdateOperationsInput | No |
| courtId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| sets | SetUncheckedUpdateManyWithoutMatchNestedInput | No |
| doubles | DoubleUncheckedUpdateManyWithoutMatchesNestedInput | No |
| matchDate | MatchDateUncheckedUpdateOneWithoutMatchNestedInput | No |
| invite | InviteUncheckedUpdateOneWithoutMatchNestedInput | No |
| eventMatch | EventMatchUncheckedUpdateOneWithoutMatchNestedInput | No |
| matchRefA | MatchesReferencedUncheckedUpdateOneWithoutMatchANestedInput | No |
| matchRefB | MatchesReferencedUncheckedUpdateOneWithoutMatchBNestedInput | No |
| matchRef | MatchesReferencedUncheckedUpdateOneWithoutRefMatchNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| isFinished | Boolean | BoolFieldUpdateOperationsInput | No |
| categoryId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| winnerDoublesId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| eventId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| type | MatchType | EnumMatchTypeFieldUpdateOperationsInput | No |
| courtId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| matches | MatchUpdateManyWithoutDoublesNestedInput | No |
| category | CategoryUpdateOneRequiredWithoutDoublesNestedInput | No |
| games | GameUpdateManyWithoutDoublesNestedInput | No |
| sets | SetUpdateManyWithoutDoublesNestedInput | No |
| matchesWins | MatchUpdateManyWithoutWinnerNestedInput | No |
| setsWins | SetUpdateManyWithoutWinnerNestedInput | No |
| gamesWins | GameUpdateManyWithoutWinnerNestedInput | No |
| eventRequests | EventRequestUpdateManyWithoutDoubleNestedInput | No |
| eventDouble | EventDoubleUpdateManyWithoutDoubleNestedInput | No |
| invites | InviteUpdateManyWithoutDoubleNestedInput | No |
| firstPlaceInGroups | DoublesGroupUpdateManyWithoutFirstPlaceNestedInput | No |
| secondPlaceInGroups | DoublesGroupUpdateManyWithoutSecondPlaceNestedInput | No |
| firstPlaceInCategory | CategoryGroupUpdateManyWithoutFirstPlaceNestedInput | No |
| secondPlaceInCategory | CategoryGroupUpdateManyWithoutSecondPlaceNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| categoryId | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| isActive | Boolean | BoolFieldUpdateOperationsInput | No |
| isFinished | Boolean | BoolFieldUpdateOperationsInput | No |
| startDate | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| finishDate | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| matchDurationInMinutes | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| timeOfFirstMatch | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| timeOfLastMatch | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| eventType | EventType | EnumEventTypeFieldUpdateOperationsInput | No |
| matchType | MatchType | EnumMatchTypeFieldUpdateOperationsInput | No |
| isGroupMatchesFinished | Boolean | BoolFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| inviteType | InviteType | EnumInviteTypeFieldUpdateOperationsInput | No |
| inviterId | String | StringFieldUpdateOperationsInput | No |
| invitedId | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| double | DoubleUpdateOneWithoutInvitesNestedInput | No |
| event | EventUpdateOneWithoutInviteNestedInput | No |
| match | MatchUpdateOneWithoutInviteNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| inviteType | InviteType | EnumInviteTypeFieldUpdateOperationsInput | No |
| doublesId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| eventId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| matchId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| inviterId | String | StringFieldUpdateOperationsInput | No |
| invitedId | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| inviteType | InviteType | EnumInviteTypeFieldUpdateOperationsInput | No |
| doublesId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| eventId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| matchId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| inviterId | String | StringFieldUpdateOperationsInput | No |
| invitedId | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| isFinished | Boolean | No |
| categoryId | String | Null | Yes |
| eventId | String | Null | Yes |
| type | MatchType | No |
| courtId | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| type | SetType | No |
| number | Int | No |
| result | String | Null | Yes |
| matchId | String | No |
| isFinished | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| setId | String | No |
| Name | Type | Nullable |
|---|---|---|
| eventId | String | No |
| categoryId | String | No |
| status | RequestStatus | No |
| Name | Type | Nullable |
|---|---|---|
| eventId | String | No |
| categoryId | String | No |
| atRestId | String | Null | Yes |
| doublesGroupId | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| inviteType | InviteType | No |
| eventId | String | Null | Yes |
| matchId | String | Null | Yes |
| inviterId | String | No |
| invitedId | String | No |
| createdAt | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| key | String | No |
| categoryGroupId | String | Null | Yes |
| secondPlaceDoublesId | String | Null | Yes |
| groupFinished | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| key | String | No |
| categoryGroupId | String | Null | Yes |
| firstPlaceDoublesId | String | Null | Yes |
| groupFinished | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| categoryId | String | No |
| eventId | String | Null | Yes |
| secondPlaceId | String | Null | Yes |
| groupsStageFinished | Boolean | No |
| categoryFinished | Boolean | No |
| isFinalMatchesCreated | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| categoryId | String | No |
| eventId | String | Null | Yes |
| firstPlaceId | String | Null | Yes |
| groupsStageFinished | Boolean | No |
| categoryFinished | Boolean | No |
| isFinalMatchesCreated | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| firstName | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| lastName | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| position | PlayerPosition | NullableEnumPlayerPositionFieldUpdateOperationsInput | Null | Yes |
| category | CategoryUpdateOneRequiredWithoutPlayersNestedInput | No |
| matches | MatchUpdateManyWithoutPlayersNestedInput | No |
| events | EventUpdateManyWithoutPlayersNestedInput | No |
| user | UserUpdateOneWithoutPlayerNestedInput | No |
| invites | InviteUpdateManyWithoutPlayersNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| firstName | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| lastName | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| categoryId | String | StringFieldUpdateOperationsInput | No |
| position | PlayerPosition | NullableEnumPlayerPositionFieldUpdateOperationsInput | Null | Yes |
| matches | MatchUncheckedUpdateManyWithoutPlayersNestedInput | No |
| events | EventUncheckedUpdateManyWithoutPlayersNestedInput | No |
| user | UserUncheckedUpdateOneWithoutPlayerNestedInput | No |
| invites | InviteUncheckedUpdateManyWithoutPlayersNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| firstName | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| lastName | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| categoryId | String | StringFieldUpdateOperationsInput | No |
| position | PlayerPosition | NullableEnumPlayerPositionFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| isFinished | Boolean | BoolFieldUpdateOperationsInput | No |
| type | MatchType | EnumMatchTypeFieldUpdateOperationsInput | No |
| players | PlayerUpdateManyWithoutMatchesNestedInput | No |
| category | CategoryUpdateOneWithoutMatchesNestedInput | No |
| winner | DoubleUpdateOneWithoutMatchesWinsNestedInput | No |
| sets | SetUpdateManyWithoutMatchNestedInput | No |
| event | EventUpdateOneWithoutMatchesNestedInput | No |
| matchDate | MatchDateUpdateOneWithoutMatchNestedInput | No |
| court | CourtUpdateOneWithoutMatchesNestedInput | No |
| invite | InviteUpdateOneWithoutMatchNestedInput | No |
| eventMatch | EventMatchUpdateOneWithoutMatchNestedInput | No |
| matchRefA | MatchesReferencedUpdateOneWithoutMatchANestedInput | No |
| matchRefB | MatchesReferencedUpdateOneWithoutMatchBNestedInput | No |
| matchRef | MatchesReferencedUpdateOneWithoutRefMatchNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| isFinished | Boolean | BoolFieldUpdateOperationsInput | No |
| categoryId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| winnerDoublesId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| eventId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| type | MatchType | EnumMatchTypeFieldUpdateOperationsInput | No |
| courtId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| players | PlayerUncheckedUpdateManyWithoutMatchesNestedInput | No |
| sets | SetUncheckedUpdateManyWithoutMatchNestedInput | No |
| matchDate | MatchDateUncheckedUpdateOneWithoutMatchNestedInput | No |
| invite | InviteUncheckedUpdateOneWithoutMatchNestedInput | No |
| eventMatch | EventMatchUncheckedUpdateOneWithoutMatchNestedInput | No |
| matchRefA | MatchesReferencedUncheckedUpdateOneWithoutMatchANestedInput | No |
| matchRefB | MatchesReferencedUncheckedUpdateOneWithoutMatchBNestedInput | No |
| matchRef | MatchesReferencedUncheckedUpdateOneWithoutRefMatchNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| isFinished | Boolean | BoolFieldUpdateOperationsInput | No |
| categoryId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| winnerDoublesId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| eventId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| type | MatchType | EnumMatchTypeFieldUpdateOperationsInput | No |
| courtId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| set | SetUpdateOneRequiredWithoutGamesNestedInput | No |
| winner | DoubleUpdateOneWithoutGamesWinsNestedInput | No |
| events | EventUpdateManyWithoutGamesNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| setId | String | StringFieldUpdateOperationsInput | No |
| winnerId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| events | EventUncheckedUpdateManyWithoutGamesNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| setId | String | StringFieldUpdateOperationsInput | No |
| winnerId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| type | SetType | EnumSetTypeFieldUpdateOperationsInput | No |
| number | Int | IntFieldUpdateOperationsInput | No |
| result | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| isFinished | Boolean | BoolFieldUpdateOperationsInput | No |
| winner | DoubleUpdateOneWithoutSetsWinsNestedInput | No |
| match | MatchUpdateOneRequiredWithoutSetsNestedInput | No |
| games | GameUpdateManyWithoutSetNestedInput | No |
| events | EventUpdateManyWithoutSetsNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| type | SetType | EnumSetTypeFieldUpdateOperationsInput | No |
| number | Int | IntFieldUpdateOperationsInput | No |
| setWinnerId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| result | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| matchId | String | StringFieldUpdateOperationsInput | No |
| isFinished | Boolean | BoolFieldUpdateOperationsInput | No |
| games | GameUncheckedUpdateManyWithoutSetNestedInput | No |
| events | EventUncheckedUpdateManyWithoutSetsNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| type | SetType | EnumSetTypeFieldUpdateOperationsInput | No |
| number | Int | IntFieldUpdateOperationsInput | No |
| setWinnerId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| result | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| matchId | String | StringFieldUpdateOperationsInput | No |
| isFinished | Boolean | BoolFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| isFinished | Boolean | BoolFieldUpdateOperationsInput | No |
| type | MatchType | EnumMatchTypeFieldUpdateOperationsInput | No |
| players | PlayerUpdateManyWithoutMatchesNestedInput | No |
| category | CategoryUpdateOneWithoutMatchesNestedInput | No |
| sets | SetUpdateManyWithoutMatchNestedInput | No |
| doubles | DoubleUpdateManyWithoutMatchesNestedInput | No |
| event | EventUpdateOneWithoutMatchesNestedInput | No |
| matchDate | MatchDateUpdateOneWithoutMatchNestedInput | No |
| court | CourtUpdateOneWithoutMatchesNestedInput | No |
| invite | InviteUpdateOneWithoutMatchNestedInput | No |
| eventMatch | EventMatchUpdateOneWithoutMatchNestedInput | No |
| matchRefA | MatchesReferencedUpdateOneWithoutMatchANestedInput | No |
| matchRefB | MatchesReferencedUpdateOneWithoutMatchBNestedInput | No |
| matchRef | MatchesReferencedUpdateOneWithoutRefMatchNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| isFinished | Boolean | BoolFieldUpdateOperationsInput | No |
| categoryId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| eventId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| type | MatchType | EnumMatchTypeFieldUpdateOperationsInput | No |
| courtId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| players | PlayerUncheckedUpdateManyWithoutMatchesNestedInput | No |
| sets | SetUncheckedUpdateManyWithoutMatchNestedInput | No |
| doubles | DoubleUncheckedUpdateManyWithoutMatchesNestedInput | No |
| matchDate | MatchDateUncheckedUpdateOneWithoutMatchNestedInput | No |
| invite | InviteUncheckedUpdateOneWithoutMatchNestedInput | No |
| eventMatch | EventMatchUncheckedUpdateOneWithoutMatchNestedInput | No |
| matchRefA | MatchesReferencedUncheckedUpdateOneWithoutMatchANestedInput | No |
| matchRefB | MatchesReferencedUncheckedUpdateOneWithoutMatchBNestedInput | No |
| matchRef | MatchesReferencedUncheckedUpdateOneWithoutRefMatchNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| isFinished | Boolean | BoolFieldUpdateOperationsInput | No |
| categoryId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| eventId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| type | MatchType | EnumMatchTypeFieldUpdateOperationsInput | No |
| courtId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| type | SetType | EnumSetTypeFieldUpdateOperationsInput | No |
| number | Int | IntFieldUpdateOperationsInput | No |
| result | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| isFinished | Boolean | BoolFieldUpdateOperationsInput | No |
| doubles | DoubleUpdateManyWithoutSetsNestedInput | No |
| match | MatchUpdateOneRequiredWithoutSetsNestedInput | No |
| games | GameUpdateManyWithoutSetNestedInput | No |
| events | EventUpdateManyWithoutSetsNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| type | SetType | EnumSetTypeFieldUpdateOperationsInput | No |
| number | Int | IntFieldUpdateOperationsInput | No |
| result | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| matchId | String | StringFieldUpdateOperationsInput | No |
| isFinished | Boolean | BoolFieldUpdateOperationsInput | No |
| doubles | DoubleUncheckedUpdateManyWithoutSetsNestedInput | No |
| games | GameUncheckedUpdateManyWithoutSetNestedInput | No |
| events | EventUncheckedUpdateManyWithoutSetsNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| type | SetType | EnumSetTypeFieldUpdateOperationsInput | No |
| number | Int | IntFieldUpdateOperationsInput | No |
| result | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| matchId | String | StringFieldUpdateOperationsInput | No |
| isFinished | Boolean | BoolFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| set | SetUpdateOneRequiredWithoutGamesNestedInput | No |
| doubles | DoubleUpdateManyWithoutGamesNestedInput | No |
| events | EventUpdateManyWithoutGamesNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| setId | String | StringFieldUpdateOperationsInput | No |
| doubles | DoubleUncheckedUpdateManyWithoutGamesNestedInput | No |
| events | EventUncheckedUpdateManyWithoutGamesNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| setId | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| status | RequestStatus | EnumRequestStatusFieldUpdateOperationsInput | No |
| event | EventUpdateOneRequiredWithoutEventRequestsNestedInput | No |
| category | CategoryUpdateOneRequiredWithoutEventRequestsNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| eventId | String | StringFieldUpdateOperationsInput | No |
| categoryId | String | StringFieldUpdateOperationsInput | No |
| status | RequestStatus | EnumRequestStatusFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| eventId | String | StringFieldUpdateOperationsInput | No |
| categoryId | String | StringFieldUpdateOperationsInput | No |
| status | RequestStatus | EnumRequestStatusFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| event | EventUpdateOneRequiredWithoutEventDoublesNestedInput | No |
| category | CategoryUpdateOneRequiredWithoutEventDoublesNestedInput | No |
| atRest | MatchDateUpdateOneWithoutAtRestNestedInput | No |
| DoublesGroup | DoublesGroupUpdateOneWithoutEventDoublesNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| eventId | String | StringFieldUpdateOperationsInput | No |
| categoryId | String | StringFieldUpdateOperationsInput | No |
| atRestId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| doublesGroupId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| eventId | String | StringFieldUpdateOperationsInput | No |
| categoryId | String | StringFieldUpdateOperationsInput | No |
| atRestId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| doublesGroupId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| inviteType | InviteType | EnumInviteTypeFieldUpdateOperationsInput | No |
| inviterId | String | StringFieldUpdateOperationsInput | No |
| invitedId | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| players | PlayerUpdateManyWithoutInvitesNestedInput | No |
| event | EventUpdateOneWithoutInviteNestedInput | No |
| match | MatchUpdateOneWithoutInviteNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| inviteType | InviteType | EnumInviteTypeFieldUpdateOperationsInput | No |
| eventId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| matchId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| inviterId | String | StringFieldUpdateOperationsInput | No |
| invitedId | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| players | PlayerUncheckedUpdateManyWithoutInvitesNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| inviteType | InviteType | EnumInviteTypeFieldUpdateOperationsInput | No |
| eventId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| matchId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| inviterId | String | StringFieldUpdateOperationsInput | No |
| invitedId | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| key | String | StringFieldUpdateOperationsInput | No |
| groupFinished | Boolean | BoolFieldUpdateOperationsInput | No |
| eventDoubles | EventDoubleUpdateManyWithoutDoublesGroupNestedInput | No |
| categoryGroup | CategoryGroupUpdateOneWithoutGroupsNestedInput | No |
| secondPlace | DoubleUpdateOneWithoutSecondPlaceInGroupsNestedInput | No |
| groupMatches | EventMatchUpdateManyWithoutDoublesGroupNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| key | String | StringFieldUpdateOperationsInput | No |
| categoryGroupId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| secondPlaceDoublesId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| groupFinished | Boolean | BoolFieldUpdateOperationsInput | No |
| eventDoubles | EventDoubleUncheckedUpdateManyWithoutDoublesGroupNestedInput | No |
| groupMatches | EventMatchUncheckedUpdateManyWithoutDoublesGroupNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| key | String | StringFieldUpdateOperationsInput | No |
| categoryGroupId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| secondPlaceDoublesId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| groupFinished | Boolean | BoolFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| key | String | StringFieldUpdateOperationsInput | No |
| groupFinished | Boolean | BoolFieldUpdateOperationsInput | No |
| eventDoubles | EventDoubleUpdateManyWithoutDoublesGroupNestedInput | No |
| categoryGroup | CategoryGroupUpdateOneWithoutGroupsNestedInput | No |
| firstPlace | DoubleUpdateOneWithoutFirstPlaceInGroupsNestedInput | No |
| groupMatches | EventMatchUpdateManyWithoutDoublesGroupNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| key | String | StringFieldUpdateOperationsInput | No |
| categoryGroupId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| firstPlaceDoublesId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| groupFinished | Boolean | BoolFieldUpdateOperationsInput | No |
| eventDoubles | EventDoubleUncheckedUpdateManyWithoutDoublesGroupNestedInput | No |
| groupMatches | EventMatchUncheckedUpdateManyWithoutDoublesGroupNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| key | String | StringFieldUpdateOperationsInput | No |
| categoryGroupId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| firstPlaceDoublesId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| groupFinished | Boolean | BoolFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| groupsStageFinished | Boolean | BoolFieldUpdateOperationsInput | No |
| categoryFinished | Boolean | BoolFieldUpdateOperationsInput | No |
| isFinalMatchesCreated | Boolean | BoolFieldUpdateOperationsInput | No |
| category | CategoryUpdateOneRequiredWithoutCategoryGroupNestedInput | No |
| groups | DoublesGroupUpdateManyWithoutCategoryGroupNestedInput | No |
| event | EventUpdateOneWithoutCategoriesGroupsNestedInput | No |
| finalMatches | EventMatchUpdateManyWithoutCategoryGroupNestedInput | No |
| matchesWithReference | MatchesReferencedUpdateManyWithoutCategoryGroupNestedInput | No |
| secondPlace | DoubleUpdateOneWithoutSecondPlaceInCategoryNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| categoryId | String | StringFieldUpdateOperationsInput | No |
| eventId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| secondPlaceId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| groupsStageFinished | Boolean | BoolFieldUpdateOperationsInput | No |
| categoryFinished | Boolean | BoolFieldUpdateOperationsInput | No |
| isFinalMatchesCreated | Boolean | BoolFieldUpdateOperationsInput | No |
| groups | DoublesGroupUncheckedUpdateManyWithoutCategoryGroupNestedInput | No |
| finalMatches | EventMatchUncheckedUpdateManyWithoutCategoryGroupNestedInput | No |
| matchesWithReference | MatchesReferencedUncheckedUpdateManyWithoutCategoryGroupNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| categoryId | String | StringFieldUpdateOperationsInput | No |
| eventId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| secondPlaceId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| groupsStageFinished | Boolean | BoolFieldUpdateOperationsInput | No |
| categoryFinished | Boolean | BoolFieldUpdateOperationsInput | No |
| isFinalMatchesCreated | Boolean | BoolFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| groupsStageFinished | Boolean | BoolFieldUpdateOperationsInput | No |
| categoryFinished | Boolean | BoolFieldUpdateOperationsInput | No |
| isFinalMatchesCreated | Boolean | BoolFieldUpdateOperationsInput | No |
| category | CategoryUpdateOneRequiredWithoutCategoryGroupNestedInput | No |
| groups | DoublesGroupUpdateManyWithoutCategoryGroupNestedInput | No |
| event | EventUpdateOneWithoutCategoriesGroupsNestedInput | No |
| finalMatches | EventMatchUpdateManyWithoutCategoryGroupNestedInput | No |
| matchesWithReference | MatchesReferencedUpdateManyWithoutCategoryGroupNestedInput | No |
| firstPlace | DoubleUpdateOneWithoutFirstPlaceInCategoryNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| categoryId | String | StringFieldUpdateOperationsInput | No |
| eventId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| firstPlaceId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| groupsStageFinished | Boolean | BoolFieldUpdateOperationsInput | No |
| categoryFinished | Boolean | BoolFieldUpdateOperationsInput | No |
| isFinalMatchesCreated | Boolean | BoolFieldUpdateOperationsInput | No |
| groups | DoublesGroupUncheckedUpdateManyWithoutCategoryGroupNestedInput | No |
| finalMatches | EventMatchUncheckedUpdateManyWithoutCategoryGroupNestedInput | No |
| matchesWithReference | MatchesReferencedUncheckedUpdateManyWithoutCategoryGroupNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| categoryId | String | StringFieldUpdateOperationsInput | No |
| eventId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| firstPlaceId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| groupsStageFinished | Boolean | BoolFieldUpdateOperationsInput | No |
| categoryFinished | Boolean | BoolFieldUpdateOperationsInput | No |
| isFinalMatchesCreated | Boolean | BoolFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| name | String | No |
| isAvailable | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| isActive | Boolean | BoolFieldUpdateOperationsInput | No |
| isFinished | Boolean | BoolFieldUpdateOperationsInput | No |
| startDate | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| finishDate | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| matchDurationInMinutes | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| timeOfFirstMatch | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| timeOfLastMatch | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| eventType | EventType | EnumEventTypeFieldUpdateOperationsInput | No |
| matchType | MatchType | EnumMatchTypeFieldUpdateOperationsInput | No |
| isGroupMatchesFinished | Boolean | BoolFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| isAvailable | Boolean | BoolFieldUpdateOperationsInput | No |
| events | EventUpdateManyWithoutCourtsNestedInput | No |
| matches | MatchUpdateManyWithoutCourtNestedInput | No |
| matchDates | MatchDateUpdateManyWithoutCourtNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| isAvailable | Boolean | BoolFieldUpdateOperationsInput | No |
| events | EventUncheckedUpdateManyWithoutCourtsNestedInput | No |
| matches | MatchUncheckedUpdateManyWithoutCourtNestedInput | No |
| matchDates | MatchDateUncheckedUpdateManyWithoutCourtNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| isAvailable | Boolean | BoolFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| name | String | Yes |
| isActive | Boolean | Yes |
| isFinished | Boolean | Yes |
| startDate | DateTime | No |
| finishDate | DateTime | No |
| matchDurationInMinutes | Int | No |
| timeOfFirstMatch | Int | No |
| timeOfLastMatch | Int | No |
| eventType | EventType | Yes |
| matchType | MatchType | Yes |
| isGroupMatchesFinished | Boolean | Yes |
| categories | Category[] | No |
| players | Player[] | No |
| matches | Match[] | No |
| places | Place[] | No |
| eventRequests | EventRequest[] | No |
| eventDoubles | EventDouble[] | No |
| games | Game[] | No |
| sets | Set[] | No |
| matchDates | MatchDate[] | No |
| courts | Court[] | No |
| invite | Invite | No |
| categoriesGroups | CategoryGroup[] | No |
| eventMatches | EventMatch[] | No |
| _count | EventCountOutputType | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| categoryId | String | Yes |
| eventId | String | No |
| firstPlaceId | String | No |
| secondPlaceId | String | No |
| groupsStageFinished | Boolean | Yes |
| categoryFinished | Boolean | Yes |
| isFinalMatchesCreated | Boolean | Yes |
| category | Category | Yes |
| groups | DoublesGroup[] | No |
| event | Event | No |
| finalMatches | EventMatch[] | No |
| matchesWithReference | MatchesReferenced[] | No |
| firstPlace | Double | No |
| secondPlace | Double | No |
| _count | CategoryGroupCountOutputType | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| key | String | Yes |
| categoryGroupId | String | No |
| firstPlaceDoublesId | String | No |
| secondPlaceDoublesId | String | No |
| groupFinished | Boolean | Yes |
| eventDoubles | EventDouble[] | No |
| categoryGroup | CategoryGroup | No |
| firstPlace | Double | No |
| secondPlace | Double | No |
| groupMatches | EventMatch[] | No |
| _count | DoublesGroupCountOutputType | Yes |
| Name | Type | Nullable |
|---|---|---|
| eventId | String | Yes |
| doubleId | String | Yes |
| categoryId | String | Yes |
| status | RequestStatus | Yes |
| event | Event | Yes |
| double | Double | Yes |
| category | Category | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| name | String | Yes |
| isAvailable | Boolean | Yes |
| placeId | String | Yes |
| events | Event[] | No |
| matches | Match[] | No |
| place | Place | Yes |
| matchDates | MatchDate[] | No |
| _count | CourtCountOutputType | Yes |
| Name | Type | Nullable |
|---|---|---|
| eventId | String | Yes |
| doubleId | String | Yes |
| categoryId | String | Yes |
| atRestId | String | No |
| doublesGroupId | String | No |
| event | Event | Yes |
| double | Double | Yes |
| category | Category | Yes |
| atRest | MatchDate | No |
| DoublesGroup | DoublesGroup | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| level | Int | Yes |
| type | CatType | Yes |
| players | Player[] | No |
| doubles | Double[] | No |
| events | Event[] | No |
| matches | Match[] | No |
| eventDoubles | EventDouble[] | No |
| eventRequests | EventRequest[] | No |
| categoryGroup | CategoryGroup[] | No |
| _count | CategoryCountOutputType | Yes |
| Name | Type | Nullable |
|---|---|---|
| number | Int | Yes |
| type | EventMatchType | Yes |
| eventId | String | Yes |
| matchId | String | Yes |
| categoryGroupId | String | No |
| doublesGroupId | String | No |
| event | Event | Yes |
| match | Match | Yes |
| categoryGroup | CategoryGroup | No |
| doublesGroup | DoublesGroup | No |
| Name | Type | Nullable |
|---|---|---|
| matchAId | String | Yes |
| matchBId | String | No |
| refMatchId | String | No |
| categoryGroupId | String | No |
| isUpdated | Boolean | Yes |
| matchA | Match | No |
| matchB | Match | No |
| refMatch | Match | No |
| categoryGroup | CategoryGroup | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| isFinished | Boolean | Yes |
| categoryId | String | No |
| winnerDoublesId | String | No |
| eventId | String | No |
| type | MatchType | Yes |
| courtId | String | No |
| players | Player[] | No |
| category | Category | No |
| winner | Double | No |
| sets | Set[] | No |
| doubles | Double[] | No |
| event | Event | No |
| matchDate | MatchDate | No |
| court | Court | No |
| invite | Invite | No |
| eventMatch | EventMatch | No |
| matchRefA | MatchesReferenced | No |
| matchRefB | MatchesReferenced | No |
| matchRef | MatchesReferenced | No |
| _count | MatchCountOutputType | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| eventId | String | Yes |
| matchId | String | No |
| start | DateTime | Yes |
| finish | DateTime | Yes |
| courtId | String | Yes |
| event | Event | Yes |
| match | Match | No |
| court | Court | Yes |
| atRest | EventDouble[] | No |
| _count | MatchDateCountOutputType | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| type | SetType | Yes |
| number | Int | Yes |
| setWinnerId | String | No |
| result | String | No |
| matchId | String | Yes |
| isFinished | Boolean | Yes |
| doubles | Double[] | No |
| winner | Double | No |
| match | Match | Yes |
| games | Game[] | No |
| events | Event[] | No |
| _count | SetCountOutputType | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| setId | String | Yes |
| winnerId | String | No |
| set | Set | Yes |
| doubles | Double[] | No |
| winner | Double | No |
| events | Event[] | No |
| _count | GameCountOutputType | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| firstName | String | No |
| lastName | String | No |
| String | Yes | |
| password | String | Yes |
| dob | DateTime | No |
| createdAt | DateTime | Yes |
| updatedAt | DateTime | Yes |
| playerId | String | No |
| role | Role | Yes |
| hashedRt | String | No |
| profileImage | String | No |
| player | Player | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| inviteType | InviteType | Yes |
| doublesId | String | No |
| eventId | String | No |
| matchId | String | No |
| inviterId | String | Yes |
| invitedId | String | Yes |
| createdAt | DateTime | Yes |
| players | Player[] | No |
| double | Double | No |
| event | Event | No |
| match | Match | No |
| _count | InviteCountOutputType | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| firstName | String | No |
| lastName | String | No |
| categoryId | String | Yes |
| position | PlayerPosition | No |
| category | Category | Yes |
| matches | Match[] | No |
| doubles | Double[] | No |
| events | Event[] | No |
| user | User | No |
| invites | Invite[] | No |
| _count | PlayerCountOutputType | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| categoryId | String | Yes |
| players | Player[] | No |
| matches | Match[] | No |
| category | Category | Yes |
| games | Game[] | No |
| sets | Set[] | No |
| matchesWins | Match[] | No |
| setsWins | Set[] | No |
| gamesWins | Game[] | No |
| eventRequests | EventRequest[] | No |
| eventDouble | EventDouble[] | No |
| invites | Invite[] | No |
| firstPlaceInGroups | DoublesGroup[] | No |
| secondPlaceInGroups | DoublesGroup[] | No |
| firstPlaceInCategory | CategoryGroup[] | No |
| secondPlaceInCategory | CategoryGroup[] | No |
| _count | DoubleCountOutputType | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| name | String | No |
| address | String | No |
| events | Event[] | No |
| courts | Court[] | No |
| _count | PlaceCountOutputType | Yes |
| Name | Type | Nullable |
|---|---|---|
| _count | EventCountAggregateOutputType | No |
| _avg | EventAvgAggregateOutputType | No |
| _sum | EventSumAggregateOutputType | No |
| _min | EventMinAggregateOutputType | No |
| _max | EventMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| name | String | Yes |
| isActive | Boolean | Yes |
| isFinished | Boolean | Yes |
| startDate | DateTime | No |
| finishDate | DateTime | No |
| matchDurationInMinutes | Int | No |
| timeOfFirstMatch | Int | No |
| timeOfLastMatch | Int | No |
| eventType | EventType | Yes |
| matchType | MatchType | Yes |
| isGroupMatchesFinished | Boolean | Yes |
| _count | EventCountAggregateOutputType | No |
| _avg | EventAvgAggregateOutputType | No |
| _sum | EventSumAggregateOutputType | No |
| _min | EventMinAggregateOutputType | No |
| _max | EventMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| _count | CategoryGroupCountAggregateOutputType | No |
| _min | CategoryGroupMinAggregateOutputType | No |
| _max | CategoryGroupMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| categoryId | String | Yes |
| eventId | String | No |
| firstPlaceId | String | No |
| secondPlaceId | String | No |
| groupsStageFinished | Boolean | Yes |
| categoryFinished | Boolean | Yes |
| isFinalMatchesCreated | Boolean | Yes |
| _count | CategoryGroupCountAggregateOutputType | No |
| _min | CategoryGroupMinAggregateOutputType | No |
| _max | CategoryGroupMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| _count | DoublesGroupCountAggregateOutputType | No |
| _min | DoublesGroupMinAggregateOutputType | No |
| _max | DoublesGroupMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| key | String | Yes |
| categoryGroupId | String | No |
| firstPlaceDoublesId | String | No |
| secondPlaceDoublesId | String | No |
| groupFinished | Boolean | Yes |
| _count | DoublesGroupCountAggregateOutputType | No |
| _min | DoublesGroupMinAggregateOutputType | No |
| _max | DoublesGroupMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| _count | EventRequestCountAggregateOutputType | No |
| _min | EventRequestMinAggregateOutputType | No |
| _max | EventRequestMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| eventId | String | Yes |
| doubleId | String | Yes |
| categoryId | String | Yes |
| status | RequestStatus | Yes |
| _count | EventRequestCountAggregateOutputType | No |
| _min | EventRequestMinAggregateOutputType | No |
| _max | EventRequestMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| _count | CourtCountAggregateOutputType | No |
| _min | CourtMinAggregateOutputType | No |
| _max | CourtMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| name | String | Yes |
| isAvailable | Boolean | Yes |
| placeId | String | Yes |
| _count | CourtCountAggregateOutputType | No |
| _min | CourtMinAggregateOutputType | No |
| _max | CourtMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| _count | EventDoubleCountAggregateOutputType | No |
| _min | EventDoubleMinAggregateOutputType | No |
| _max | EventDoubleMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| eventId | String | Yes |
| doubleId | String | Yes |
| categoryId | String | Yes |
| atRestId | String | No |
| doublesGroupId | String | No |
| _count | EventDoubleCountAggregateOutputType | No |
| _min | EventDoubleMinAggregateOutputType | No |
| _max | EventDoubleMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| _count | CategoryCountAggregateOutputType | No |
| _avg | CategoryAvgAggregateOutputType | No |
| _sum | CategorySumAggregateOutputType | No |
| _min | CategoryMinAggregateOutputType | No |
| _max | CategoryMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| level | Int | Yes |
| type | CatType | Yes |
| _count | CategoryCountAggregateOutputType | No |
| _avg | CategoryAvgAggregateOutputType | No |
| _sum | CategorySumAggregateOutputType | No |
| _min | CategoryMinAggregateOutputType | No |
| _max | CategoryMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| _count | EventMatchCountAggregateOutputType | No |
| _avg | EventMatchAvgAggregateOutputType | No |
| _sum | EventMatchSumAggregateOutputType | No |
| _min | EventMatchMinAggregateOutputType | No |
| _max | EventMatchMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| number | Int | Yes |
| type | EventMatchType | Yes |
| eventId | String | Yes |
| matchId | String | Yes |
| categoryGroupId | String | No |
| doublesGroupId | String | No |
| _count | EventMatchCountAggregateOutputType | No |
| _avg | EventMatchAvgAggregateOutputType | No |
| _sum | EventMatchSumAggregateOutputType | No |
| _min | EventMatchMinAggregateOutputType | No |
| _max | EventMatchMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| _count | MatchesReferencedCountAggregateOutputType | No |
| _min | MatchesReferencedMinAggregateOutputType | No |
| _max | MatchesReferencedMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| matchAId | String | Yes |
| matchBId | String | No |
| refMatchId | String | No |
| categoryGroupId | String | No |
| isUpdated | Boolean | Yes |
| _count | MatchesReferencedCountAggregateOutputType | No |
| _min | MatchesReferencedMinAggregateOutputType | No |
| _max | MatchesReferencedMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| _count | MatchCountAggregateOutputType | No |
| _min | MatchMinAggregateOutputType | No |
| _max | MatchMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| isFinished | Boolean | Yes |
| categoryId | String | No |
| winnerDoublesId | String | No |
| eventId | String | No |
| type | MatchType | Yes |
| courtId | String | No |
| _count | MatchCountAggregateOutputType | No |
| _min | MatchMinAggregateOutputType | No |
| _max | MatchMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| _count | MatchDateCountAggregateOutputType | No |
| _min | MatchDateMinAggregateOutputType | No |
| _max | MatchDateMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| eventId | String | Yes |
| matchId | String | No |
| start | DateTime | Yes |
| finish | DateTime | Yes |
| courtId | String | Yes |
| _count | MatchDateCountAggregateOutputType | No |
| _min | MatchDateMinAggregateOutputType | No |
| _max | MatchDateMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| _count | SetCountAggregateOutputType | No |
| _avg | SetAvgAggregateOutputType | No |
| _sum | SetSumAggregateOutputType | No |
| _min | SetMinAggregateOutputType | No |
| _max | SetMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| type | SetType | Yes |
| number | Int | Yes |
| setWinnerId | String | No |
| result | String | No |
| matchId | String | Yes |
| isFinished | Boolean | Yes |
| _count | SetCountAggregateOutputType | No |
| _avg | SetAvgAggregateOutputType | No |
| _sum | SetSumAggregateOutputType | No |
| _min | SetMinAggregateOutputType | No |
| _max | SetMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| _count | GameCountAggregateOutputType | No |
| _min | GameMinAggregateOutputType | No |
| _max | GameMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| setId | String | Yes |
| winnerId | String | No |
| _count | GameCountAggregateOutputType | No |
| _min | GameMinAggregateOutputType | No |
| _max | GameMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| _count | UserCountAggregateOutputType | No |
| _min | UserMinAggregateOutputType | No |
| _max | UserMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| firstName | String | No |
| lastName | String | No |
| String | Yes | |
| password | String | Yes |
| dob | DateTime | No |
| createdAt | DateTime | Yes |
| updatedAt | DateTime | Yes |
| playerId | String | No |
| role | Role | Yes |
| hashedRt | String | No |
| profileImage | String | No |
| _count | UserCountAggregateOutputType | No |
| _min | UserMinAggregateOutputType | No |
| _max | UserMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| _count | InviteCountAggregateOutputType | No |
| _min | InviteMinAggregateOutputType | No |
| _max | InviteMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| inviteType | InviteType | Yes |
| doublesId | String | No |
| eventId | String | No |
| matchId | String | No |
| inviterId | String | Yes |
| invitedId | String | Yes |
| createdAt | DateTime | Yes |
| _count | InviteCountAggregateOutputType | No |
| _min | InviteMinAggregateOutputType | No |
| _max | InviteMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| _count | PlayerCountAggregateOutputType | No |
| _min | PlayerMinAggregateOutputType | No |
| _max | PlayerMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| firstName | String | No |
| lastName | String | No |
| categoryId | String | Yes |
| position | PlayerPosition | No |
| _count | PlayerCountAggregateOutputType | No |
| _min | PlayerMinAggregateOutputType | No |
| _max | PlayerMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| _count | DoubleCountAggregateOutputType | No |
| _min | DoubleMinAggregateOutputType | No |
| _max | DoubleMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| categoryId | String | Yes |
| _count | DoubleCountAggregateOutputType | No |
| _min | DoubleMinAggregateOutputType | No |
| _max | DoubleMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| _count | PlaceCountAggregateOutputType | No |
| _min | PlaceMinAggregateOutputType | No |
| _max | PlaceMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| name | String | No |
| address | String | No |
| _count | PlaceCountAggregateOutputType | No |
| _min | PlaceMinAggregateOutputType | No |
| _max | PlaceMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| count | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| categories | Int | Yes |
| players | Int | Yes |
| matches | Int | Yes |
| places | Int | Yes |
| eventRequests | Int | Yes |
| eventDoubles | Int | Yes |
| games | Int | Yes |
| sets | Int | Yes |
| matchDates | Int | Yes |
| courts | Int | Yes |
| categoriesGroups | Int | Yes |
| eventMatches | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| name | Int | Yes |
| isActive | Int | Yes |
| isFinished | Int | Yes |
| startDate | Int | Yes |
| finishDate | Int | Yes |
| matchDurationInMinutes | Int | Yes |
| timeOfFirstMatch | Int | Yes |
| timeOfLastMatch | Int | Yes |
| eventType | Int | Yes |
| matchType | Int | Yes |
| isGroupMatchesFinished | Int | Yes |
| _all | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| matchDurationInMinutes | Float | No |
| timeOfFirstMatch | Float | No |
| timeOfLastMatch | Float | No |
| Name | Type | Nullable |
|---|---|---|
| matchDurationInMinutes | Int | No |
| timeOfFirstMatch | Int | No |
| timeOfLastMatch | Int | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| name | String | No |
| isActive | Boolean | No |
| isFinished | Boolean | No |
| startDate | DateTime | No |
| finishDate | DateTime | No |
| matchDurationInMinutes | Int | No |
| timeOfFirstMatch | Int | No |
| timeOfLastMatch | Int | No |
| eventType | EventType | No |
| matchType | MatchType | No |
| isGroupMatchesFinished | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| name | String | No |
| isActive | Boolean | No |
| isFinished | Boolean | No |
| startDate | DateTime | No |
| finishDate | DateTime | No |
| matchDurationInMinutes | Int | No |
| timeOfFirstMatch | Int | No |
| timeOfLastMatch | Int | No |
| eventType | EventType | No |
| matchType | MatchType | No |
| isGroupMatchesFinished | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| groups | Int | Yes |
| finalMatches | Int | Yes |
| matchesWithReference | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| categoryId | Int | Yes |
| eventId | Int | Yes |
| firstPlaceId | Int | Yes |
| secondPlaceId | Int | Yes |
| groupsStageFinished | Int | Yes |
| categoryFinished | Int | Yes |
| isFinalMatchesCreated | Int | Yes |
| _all | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| categoryId | String | No |
| eventId | String | No |
| firstPlaceId | String | No |
| secondPlaceId | String | No |
| groupsStageFinished | Boolean | No |
| categoryFinished | Boolean | No |
| isFinalMatchesCreated | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| categoryId | String | No |
| eventId | String | No |
| firstPlaceId | String | No |
| secondPlaceId | String | No |
| groupsStageFinished | Boolean | No |
| categoryFinished | Boolean | No |
| isFinalMatchesCreated | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| eventDoubles | Int | Yes |
| groupMatches | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| key | Int | Yes |
| categoryGroupId | Int | Yes |
| firstPlaceDoublesId | Int | Yes |
| secondPlaceDoublesId | Int | Yes |
| groupFinished | Int | Yes |
| _all | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| key | String | No |
| categoryGroupId | String | No |
| firstPlaceDoublesId | String | No |
| secondPlaceDoublesId | String | No |
| groupFinished | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| key | String | No |
| categoryGroupId | String | No |
| firstPlaceDoublesId | String | No |
| secondPlaceDoublesId | String | No |
| groupFinished | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| eventId | Int | Yes |
| doubleId | Int | Yes |
| categoryId | Int | Yes |
| status | Int | Yes |
| _all | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| eventId | String | No |
| doubleId | String | No |
| categoryId | String | No |
| status | RequestStatus | No |
| Name | Type | Nullable |
|---|---|---|
| eventId | String | No |
| doubleId | String | No |
| categoryId | String | No |
| status | RequestStatus | No |
| Name | Type | Nullable |
|---|---|---|
| events | Int | Yes |
| matches | Int | Yes |
| matchDates | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| name | Int | Yes |
| isAvailable | Int | Yes |
| placeId | Int | Yes |
| _all | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| name | String | No |
| isAvailable | Boolean | No |
| placeId | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| name | String | No |
| isAvailable | Boolean | No |
| placeId | String | No |
| Name | Type | Nullable |
|---|---|---|
| eventId | Int | Yes |
| doubleId | Int | Yes |
| categoryId | Int | Yes |
| atRestId | Int | Yes |
| doublesGroupId | Int | Yes |
| _all | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| eventId | String | No |
| doubleId | String | No |
| categoryId | String | No |
| atRestId | String | No |
| doublesGroupId | String | No |
| Name | Type | Nullable |
|---|---|---|
| eventId | String | No |
| doubleId | String | No |
| categoryId | String | No |
| atRestId | String | No |
| doublesGroupId | String | No |
| Name | Type | Nullable |
|---|---|---|
| players | Int | Yes |
| doubles | Int | Yes |
| events | Int | Yes |
| matches | Int | Yes |
| eventDoubles | Int | Yes |
| eventRequests | Int | Yes |
| categoryGroup | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| level | Int | Yes |
| type | Int | Yes |
| _all | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| level | Float | No |
| Name | Type | Nullable |
|---|---|---|
| level | Int | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| level | Int | No |
| type | CatType | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| level | Int | No |
| type | CatType | No |
| Name | Type | Nullable |
|---|---|---|
| number | Int | Yes |
| type | Int | Yes |
| eventId | Int | Yes |
| matchId | Int | Yes |
| categoryGroupId | Int | Yes |
| doublesGroupId | Int | Yes |
| _all | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| number | Float | No |
| Name | Type | Nullable |
|---|---|---|
| number | Int | No |
| Name | Type | Nullable |
|---|---|---|
| number | Int | No |
| type | EventMatchType | No |
| eventId | String | No |
| matchId | String | No |
| categoryGroupId | String | No |
| doublesGroupId | String | No |
| Name | Type | Nullable |
|---|---|---|
| number | Int | No |
| type | EventMatchType | No |
| eventId | String | No |
| matchId | String | No |
| categoryGroupId | String | No |
| doublesGroupId | String | No |
| Name | Type | Nullable |
|---|---|---|
| matchAId | Int | Yes |
| matchBId | Int | Yes |
| refMatchId | Int | Yes |
| categoryGroupId | Int | Yes |
| isUpdated | Int | Yes |
| _all | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| matchAId | String | No |
| matchBId | String | No |
| refMatchId | String | No |
| categoryGroupId | String | No |
| isUpdated | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| matchAId | String | No |
| matchBId | String | No |
| refMatchId | String | No |
| categoryGroupId | String | No |
| isUpdated | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| players | Int | Yes |
| sets | Int | Yes |
| doubles | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| isFinished | Int | Yes |
| categoryId | Int | Yes |
| winnerDoublesId | Int | Yes |
| eventId | Int | Yes |
| type | Int | Yes |
| courtId | Int | Yes |
| _all | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| isFinished | Boolean | No |
| categoryId | String | No |
| winnerDoublesId | String | No |
| eventId | String | No |
| type | MatchType | No |
| courtId | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| isFinished | Boolean | No |
| categoryId | String | No |
| winnerDoublesId | String | No |
| eventId | String | No |
| type | MatchType | No |
| courtId | String | No |
| Name | Type | Nullable |
|---|---|---|
| atRest | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| eventId | Int | Yes |
| matchId | Int | Yes |
| start | Int | Yes |
| finish | Int | Yes |
| courtId | Int | Yes |
| _all | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| eventId | String | No |
| matchId | String | No |
| start | DateTime | No |
| finish | DateTime | No |
| courtId | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| eventId | String | No |
| matchId | String | No |
| start | DateTime | No |
| finish | DateTime | No |
| courtId | String | No |
| Name | Type | Nullable |
|---|---|---|
| doubles | Int | Yes |
| games | Int | Yes |
| events | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| type | Int | Yes |
| number | Int | Yes |
| setWinnerId | Int | Yes |
| result | Int | Yes |
| matchId | Int | Yes |
| isFinished | Int | Yes |
| _all | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| number | Float | No |
| Name | Type | Nullable |
|---|---|---|
| number | Int | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| type | SetType | No |
| number | Int | No |
| setWinnerId | String | No |
| result | String | No |
| matchId | String | No |
| isFinished | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| type | SetType | No |
| number | Int | No |
| setWinnerId | String | No |
| result | String | No |
| matchId | String | No |
| isFinished | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| doubles | Int | Yes |
| events | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| setId | Int | Yes |
| winnerId | Int | Yes |
| _all | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| setId | String | No |
| winnerId | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| setId | String | No |
| winnerId | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| firstName | Int | Yes |
| lastName | Int | Yes |
| Int | Yes | |
| password | Int | Yes |
| dob | Int | Yes |
| createdAt | Int | Yes |
| updatedAt | Int | Yes |
| playerId | Int | Yes |
| role | Int | Yes |
| hashedRt | Int | Yes |
| profileImage | Int | Yes |
| _all | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| firstName | String | No |
| lastName | String | No |
| String | No | |
| password | String | No |
| dob | DateTime | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| playerId | String | No |
| role | Role | No |
| hashedRt | String | No |
| profileImage | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| firstName | String | No |
| lastName | String | No |
| String | No | |
| password | String | No |
| dob | DateTime | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| playerId | String | No |
| role | Role | No |
| hashedRt | String | No |
| profileImage | String | No |
| Name | Type | Nullable |
|---|---|---|
| players | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| inviteType | Int | Yes |
| doublesId | Int | Yes |
| eventId | Int | Yes |
| matchId | Int | Yes |
| inviterId | Int | Yes |
| invitedId | Int | Yes |
| createdAt | Int | Yes |
| _all | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| inviteType | InviteType | No |
| doublesId | String | No |
| eventId | String | No |
| matchId | String | No |
| inviterId | String | No |
| invitedId | String | No |
| createdAt | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| inviteType | InviteType | No |
| doublesId | String | No |
| eventId | String | No |
| matchId | String | No |
| inviterId | String | No |
| invitedId | String | No |
| createdAt | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| matches | Int | Yes |
| doubles | Int | Yes |
| events | Int | Yes |
| invites | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| firstName | Int | Yes |
| lastName | Int | Yes |
| categoryId | Int | Yes |
| position | Int | Yes |
| _all | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| firstName | String | No |
| lastName | String | No |
| categoryId | String | No |
| position | PlayerPosition | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| firstName | String | No |
| lastName | String | No |
| categoryId | String | No |
| position | PlayerPosition | No |
| Name | Type | Nullable |
|---|---|---|
| players | Int | Yes |
| matches | Int | Yes |
| games | Int | Yes |
| sets | Int | Yes |
| matchesWins | Int | Yes |
| setsWins | Int | Yes |
| gamesWins | Int | Yes |
| eventRequests | Int | Yes |
| eventDouble | Int | Yes |
| invites | Int | Yes |
| firstPlaceInGroups | Int | Yes |
| secondPlaceInGroups | Int | Yes |
| firstPlaceInCategory | Int | Yes |
| secondPlaceInCategory | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| categoryId | Int | Yes |
| _all | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| categoryId | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| categoryId | String | No |
| Name | Type | Nullable |
|---|---|---|
| events | Int | Yes |
| courts | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| name | Int | Yes |
| address | Int | Yes |
| _all | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| name | String | No |
| address | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| name | String | No |
| address | String | No |